Skip to content
Permalink
Newer
Older
100755 71 lines (52 sloc) 2.22 KB
September 25, 2017 18:29
1
#!/usr/bin/env beesh
June 6, 2016 09:50
2
September 2, 2019 16:06
3
# BEE_VERSION exiv2-0.26-2
September 25, 2017 18:25
4
September 25, 2017 18:29
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.)
June 6, 2016 09:50
7
September 25, 2017 18:29
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.
June 6, 2016 09:50
11
September 2, 2019 09:06
12
SRCURL[0]="https://github.com/Exiv2/exiv2/archive/v${PKGVERSION}.tar.gz exiv2-${PKGVERSION}.tar.gz"
June 6, 2016 09:50
13
September 25, 2017 18:29
14
###############################################################################
15
## Add URLs/pathes to patch files to the PATCHURL array.
16
## The sources will be patched in the order of the array.
June 6, 2016 09:50
17
September 25, 2017 18:29
18
# PATCHURL+=()
June 6, 2016 09:50
19
September 25, 2017 18:29
20
###############################################################################
21
## Add filename patterns to the EXCLUDE array of files that should not
22
## be added to you package but may be present in the image directory.
June 6, 2016 09:50
23
September 25, 2017 18:29
24
# EXCLUDE+=()
June 6, 2016 09:50
25
September 25, 2017 18:29
26
###############################################################################
27
## Uncomment the next statement, if the software may not be able to be built
28
## outside the source directory and needs to be built inside the source
29
## directory.
June 6, 2016 09:50
30
September 25, 2017 18:29
31
# build_in_sourcedir
June 6, 2016 09:50
32
September 25, 2017 18:29
33
###############################################################################
34
## bee cannot detect buildtypes specified in subdirectories.
35
## Sometimes packages "hide" the real sources in a subdirectory named
36
## 'src' or 'cmake' or ..
37
## use 'sourcesubdir_append' to specify this directory if known.
38
39
# sourcesubdir_append src
40
41
42
###############################################################################
43
## Change the default (auto-detected) steps to
44
## extract, patch, configure/setup, build and install the software.
45
## Make sure the mee_install function does install everything to the
46
## image directory "${D}"
47
48
#mee_extract() {
49
# bee_extract "${@}"
50
#}
51
52
#mee_patch() {
53
# bee_patch "${@}"
54
#}
55
56
mee_configure() {
57
bee_configure \
September 2, 2019 16:06
58
-DEXIV2_ENABLE_BUILD_SAMPLES=no \
September 2, 2019 09:06
59
-DEXIV2_ENABLE_WEBREADY=yes \
60
-DEXIV2_ENABLE_SSH=off \
61
-DEXIV2_ENABLE_CURL=yes
62
}
September 25, 2017 18:29
63
64
#mee_build() {
65
# bee_build
66
#}
67
68
#mee_install() {
69
# bee_install
70
#}
71
## by default this may be 'make install DESTDIR="${D}"'