Permalink
Newer
100755
88 lines (67 sloc)
2.6 KB
8
## this file was created by bee init and should be executed to build a
9
## bee-package. (Additional hints are located at the end of this file.)
10
11
###############################################################################
12
## The source URL(s) define the location of the sources that will be
13
## downloaded. Version variables may be used to simplify reuse of this bee-file.
14
15
SRCURL[0]="https://github.com/xianyi/OpenBLAS/archive/v${PKGVERSION}.tar.gz"
16
17
###############################################################################
18
## Add URLs/pathes to patch files to the PATCHURL array.
19
## The sources will be patched in the order of the array.
20
21
# PATCHURL+=()
22
23
###############################################################################
24
## Add filename patterns to the EXCLUDE array of files that should not
25
## be added to you package but may be present in the image directory.
26
27
# EXCLUDE+=()
28
29
###############################################################################
30
## Uncomment the next statement, if the software may not be able to be built
31
## outside the source directory and needs to be built inside the source
32
## directory.
33
34
# build_in_sourcedir
35
36
###############################################################################
37
## bee cannot detect buildtypes specified in subdirectories.
38
## Sometimes packages "hide" the real sources in a subdirectory named
39
## 'src' or 'cmake' or ..
40
## use 'sourcesubdir_append' to specify this directory if known.
41
42
# sourcesubdir_append src
43
44
45
###############################################################################
46
## Change the default (auto-detected) steps to
47
## extract, patch, configure/setup, build and install the software.
48
## Make sure the mee_install function does install everything to the
49
## image directory "${D}"
50
51
#mee_extract() {
52
# bee_extract "${@}"
53
#}
54
55
#mee_patch() {
56
# bee_patch "${@}"
57
#}
58
59
#mee_configure() {
60
# bee_configure
61
#}
62
63
#mee_build() {
64
# bee_build
65
#}
66
67
#mee_install() {
68
# bee_install
69
#}
70
## by default this may be 'make install DESTDIR="${D}"'
71
72
###############################################################################
73
##
74
## Additional hints:
75
##
76
## The name of this bee-file should follow the following naming convention:
77
## pkgname-pkgversion-pkgrevision.bee
78
##
79
## You may remove all comments as long as SRCURL[${PKGVERSION}] is set.
80
##
81
## Everything in this file will be executed in a bash environment.
82
##
83
## Build the package by executing
84
## './pkg-version-N.bee' or
85
## 'beesh ./pkg-version-N.bee'
86
##
87
## see http://beezinga.org/
88
##