Permalink
Newer
100755
80 lines (61 sloc)
2.35 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://deb.debian.org/debian/pool/main/s/stress/stress_${PKGVERSION}.orig.tar.gz stress_${PKGVERSION}.tar.gz"
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
## Uncomment the next statement, if the software may not be able to be built
23
## outside the source directory and needs to be built inside the source
24
## directory.
25
26
# build_in_sourcedir
27
28
###############################################################################
29
## bee cannot detect buildtypes specified in subdirectories.
30
## Sometimes packages "hide" the real sources in a subdirectory named
31
## 'src' or 'cmake' or ..
32
## use 'sourcesubdir_append' to specify this directory if known.
33
34
# sourcesubdir_append src
35
36
37
###############################################################################
38
## Change the default (auto-detected) steps to
39
## extract, patch, configure/setup, build and install the software.
40
## Make sure the mee_install function does install everything to the
41
## image directory "${D}"
42
43
#mee_extract() {
44
# bee_extract "${@}"
45
#}
46
47
#mee_patch() {
48
# bee_patch "${@}"
49
#}
50
51
#mee_configure() {
53
#}
54
55
#mee_build() {
56
# bee_build
57
#}
58
59
#mee_install() {
60
# bee_install
61
#}
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
##