Permalink
Newer
100755
69 lines (50 sloc)
2.15 KB
4
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.
12
SRCURL[0]="https://sourceware.org/pub/valgrind/valgrind-${PKGVERSION}.tar.bz2"
14
###############################################################################
15
## Add URLs/pathes to patch files to the PATCHURL array.
16
## The sources will be patched in the order of the array.
17
18
# PATCHURL+=()
19
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.
23
24
# EXCLUDE+=()
25
26
###############################################################################
27
## Uncomment the next statement, if the software may not be able to be build
28
## outside the source directory and need to be build inside the source
29
## directory.
30
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.
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}"
65
mee_install() {
66
bee_install
67
rm -rf ${D}/usr/share/doc # no html docs, lmgtfy
68
}