Skip to content
Permalink
Newer
Older
100755 87 lines (67 sloc) 2.64 KB
June 6, 2016 09:50
1
#!/usr/bin/env beesh
2
July 30, 2018 13:34
3
# BEE_VERSION make-4.2.1-2
4
June 6, 2016 09:50
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://ftp.gnu.org/gnu/make/make-${PKGVERSION}.tar.bz2"
June 6, 2016 09:50
13
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
July 30, 2018 13:25
18
PATCHURL+=(/src/mariux/patches/make.guile22.diff.gz)
19
PATCHURL+=(/src/mariux/patches/make.glibc-2.27.glob.diff.gz)
June 6, 2016 09:50
20
21
###############################################################################
22
## Add filename patterns to the EXCLUDE array of files that should not
23
## be added to you package but may be present in the image directory.
24
25
# EXCLUDE+=()
26
27
###############################################################################
28
## Uncomment the next statement, if the software may not be able to be built
29
## outside the source directory and needs to be built inside the source
June 6, 2016 09:50
30
## directory.
31
32
# build_in_sourcedir
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.
39
40
# sourcesubdir_append src
41
42
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}"
48
49
#mee_extract() {
50
# bee_extract "${@}"
51
#}
52
May 28, 2018 15:50
53
mee_patch() {
54
bee_patch "${@}"
55
autoreconf -vif
May 28, 2018 15:50
56
}
June 6, 2016 09:50
57
58
#mee_configure() {
59
# bee_configure
60
#}
61
62
#mee_build() {
63
# bee_build
64
#}
65
66
#mee_install() {
67
# bee_install
68
#}
69
## by default this may be 'make install DESTDIR="${D}"'
70
71
###############################################################################
72
##
73
## Additional hints:
74
##
75
## The name of this bee-file should follow the following naming convention:
76
## pkgname-pkgversion-pkgrevision.bee
77
##
78
## You may remove all comments as long as SRCURL[0] is set.
79
##
80
## Everything in this file will be executed in a bash environment.
81
##
82
## Build the package by executing
83
## './pkg-version-N.bee' or
84
## 'beesh ./pkg-version-N.bee'
85
##
86
## see http://beezinga.org/
87
##