Skip to content
Permalink
Newer
Older
100755 69 lines (50 sloc) 2.15 KB
August 4, 2016 17:41
1
#!/usr/bin/env beesh
June 6, 2016 09:50
2
June 17, 2019 17:52
3
# BEE_VERSION valgrind-3.15.0-1
August 4, 2016 17:41
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.
11
12
SRCURL[0]="https://sourceware.org/pub/valgrind/valgrind-${PKGVERSION}.tar.bz2"
June 6, 2016 09:50
13
August 4, 2016 17:41
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
April 25, 2018 10:03
31
# make install bug for man&doc
32
build_in_sourcedir
August 4, 2016 17:41
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.
June 6, 2016 09:50
39
August 4, 2016 17:41
40
# sourcesubdir_append src
June 6, 2016 09:50
41
42
August 4, 2016 17:41
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}"
June 6, 2016 09:50
48
August 4, 2016 17:41
49
#mee_extract() {
50
# bee_extract "${@}"
51
#}
June 6, 2016 09:50
52
August 4, 2016 17:41
53
#mee_patch() {
54
# bee_patch "${@}"
55
#}
June 6, 2016 09:50
56
June 17, 2019 17:55
57
mee_configure() {
58
bee_configure --with-mpicc=no
59
}
June 6, 2016 09:50
60
August 4, 2016 17:41
61
#mee_build() {
62
# bee_build
63
#}
June 6, 2016 09:50
64
April 25, 2018 10:03
65
mee_install() {
66
bee_install
67
rm -rf ${D}/usr/share/doc # no html docs, lmgtfy
68
}
August 4, 2016 17:41
69
## by default this may be 'make install DESTDIR="${D}"'