Permalink
Newer
100755
86 lines (66 sloc)
2.59 KB
5
BEE_BUILDTYPE=autotools
6
## this file was created by bee init and should be executed to build a
7
## bee-package. (Additional hints are located at the end of this file.)
8
9
###############################################################################
10
## The source URL(s) define the location of the sources that will be
11
## downloaded. Version variables may be used to simplify reuse of this bee-file.
12
13
SRCURL[0]="https://ftp.fau.de/apache//apr/apr-iconv-${PKGVERSION}.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 build
29
## outside the source directory and need to be build 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
41
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() {
59
}
60
61
#mee_build() {
62
# bee_build
63
#}
64
65
#mee_install() {
66
# bee_install
67
#}
68
## by default this may be 'make install DESTDIR="${D}"'
69
70
###############################################################################
71
##
72
## Additional hints:
73
##
74
## The name of this bee-file should follow the following naming convention:
75
## pkgname-pkgversion-pkgrevision.bee
76
##
77
## You may remove all comments as long as SRCURL[0]="" is set.
78
##
79
## Everything in this file will be executed in a bash environment.
80
##
81
## Build the package by executing
82
## './pkg-version-N.bee' or
83
## 'beesh ./pkg-version-N.bee'
84
##
85
## see http://beezinga.org/
86
##