Permalink
Newer
100755
91 lines (72 sloc)
2.88 KB
5
## this file was created by bee init and should be executed to build a
6
## bee-package. (Additional hints are located at the end of this file.)
7
8
###############################################################################
9
## The source URL(s) define the location of the sources that will be
10
## downloaded. Version variables may be used to simplify reuse of this bee-file.
11
12
SRCURL[0]="http://downloads.webmproject.org/releases/webp/libwebp-${PKGVERSION}.tar.gz"
13
SRCURL[0]="/src/mariux/md5repo/3d7db92ebba5b4f679413d25c6040881/libwebp-0.5.1.tar.gz"
14
15
###############################################################################
16
## Add URLs/pathes to patch files to the PATCHURL array.
17
## The sources will be patched in the order of the array.
18
19
# PATCHURL+=()
20
21
###############################################################################
22
## Add filename patterns to the EXCLUDE array of files that should not
23
## be added to you package but may be present in the image directory.
24
25
# EXCLUDE+=()
26
27
###############################################################################
28
## Uncomment the next statement, if the software may not be able to be built
29
## outside the source directory and needs to be built inside the source
30
## directory.
31
32
# build_in_sourcedir
33
34
###############################################################################
35
## bee cannot detect buildtypes specified in subdirectories.
36
## Sometimes packages "hide" the real sources in a subdirectory named
37
## 'src' or 'cmake' or ..
38
## use 'sourcesubdir_append' to specify this directory if known.
39
40
# sourcesubdir_append src
42
43
###############################################################################
44
## Change the default (auto-detected) steps to
45
## extract, patch, configure/setup, build and install the software.
46
## Make sure the mee_install function does install everything to the
47
## image directory "${D}"
48
49
#mee_extract() {
50
# bee_extract "${@}"
51
#}
52
53
#mee_patch() {
54
# bee_patch "${@}"
55
#}
56
57
mee_configure() {
58
bee_configure --enable-libwebpmux \
59
--enable-libwebpdemux \
60
--enable-libwebpdecoder \
61
--enable-libwebpextras \
62
--enable-swap-16bit-csp \
63
--disable-static
64
}
65
66
#mee_build() {
67
# bee_build
68
#}
69
70
#mee_install() {
71
# bee_install
72
#}
73
## by default this may be 'make install DESTDIR="${D}"'
74
75
###############################################################################
76
##
77
## Additional hints:
78
##
79
## The name of this bee-file should follow the following naming convention:
80
## pkgname-pkgversion-pkgrevision.bee
81
##
82
## You may remove all comments as long as SRCURL[0] is set.
83
##
84
## Everything in this file will be executed in a bash environment.
85
##
86
## Build the package by executing
87
## './pkg-version-N.bee' or
88
## 'beesh ./pkg-version-N.bee'
89
##
90
## see http://beezinga.org/
91
##