Permalink
Newer
100755
80 lines (62 sloc)
2.33 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
14
###############################################################################
15
## Add URLs/pathes to patch files to the PATCHURL array.
16
## The sources will be patched in the order of the array.
20
###############################################################################
21
## Uncomment the next statement, if the software may not be able to be built
22
## outside the source directory and needs to be built inside the source
23
## directory.
27
###############################################################################
28
## bee cannot detect buildtypes specified in subdirectories.
29
## Sometimes packages "hide" the real sources in a subdirectory named
30
## 'src' or 'cmake' or ..
31
## use 'sourcesubdir_append' to specify this directory if known.
36
###############################################################################
37
## Change the default (auto-detected) steps to
38
## extract, patch, configure/setup, build and install the software.
39
## Make sure the mee_install function does install everything to the
40
## image directory "${D}"
42
#mee_extract() {
43
# bee_extract "${@}"
44
#}
45
46
#mee_patch() {
47
# bee_patch "${@}"
48
#}
49
62
## by default this may be 'make install DESTDIR="${D}"'
63
64
###############################################################################
65
##
66
## Additional hints:
67
##
68
## The name of this bee-file should follow the following naming convention:
69
## pkgname-pkgversion-pkgrevision.bee
70
##
71
## You may remove all comments as long as SRCURL[0] is set.
72
##
73
## Everything in this file will be executed in a bash environment.
74
##
75
## Build the package by executing
76
## './pkg-version-N.bee' or
77
## 'beesh ./pkg-version-N.bee'
78
##
79
## see http://beezinga.org/
80
##