Skip to content
Permalink
Newer
Older
100755 74 lines (58 sloc) 2.2 KB
June 6, 2016 09:50
1
#!/usr/bin/env beesh
2
3
## this file was created by bee init and should be executed to build a
4
## bee-package. (Additional hints are located at the end of this file.)
5
6
###############################################################################
7
## The source URL(s) define the location of the sources that will be
8
## downloaded. Version variables may be used to simplify reuse of this bee-file.
9
10
SRCURL[0]="http://cyberelk.net/tim/data/patchutils/stable/patchutils-${PKGVERSION}.tar.bz2"
11
12
###############################################################################
13
## Add URLs/pathes to patch files to the PATCHURL array.
14
## The sources will be patched in the order of the array.
15
16
# PATCHURL+=()
17
18
###############################################################################
19
## Add filename patterns to the EXCLUDE array of files that should not
20
## be added to you package but may be present in the image directory.
21
22
# EXCLUDE+=()
23
24
###############################################################################
25
## Uncomment the next statement, if the software may not be able to be build
26
## outside the source directory and need to be build inside the source
27
## directory.
28
29
# build_in_sourcedir
30
31
###############################################################################
32
## Change the default (auto-detected) steps to
33
## extract, patch, configure/setup, build and install the software.
34
## Make sure the mee_install function does install everything to the
35
## image directory "${D}"
36
37
#mee_extract() {
38
# bee_extract "${@}"
39
#}
40
41
#mee_patch() {
42
# bee_patch "${@}"
43
#}
44
45
#mee_configure() {
46
# bee_configure
47
#}
48
49
#mee_build() {
50
# bee_build
51
#}
52
53
#mee_install() {
54
# bee_install
55
#}
56
## by default this may be 'make install DESTDIR="${D}"'
57
58
###############################################################################
59
##
60
## Additional hints:
61
##
62
## The name of this bee-file should follow the following naming convention:
63
## pkgname-pkgversion-pkgrevision.bee
64
##
65
## You may remove all comments as long as SRCURL[0]="" is set.
66
##
67
## Everything in this file will be executed in a bash environment.
68
##
69
## Build the package by executing
70
## './pkg-version-N.bee' or
71
## 'beesh ./pkg-version-N.bee'
72
##
73
## see http://beezinga.org/
74
##