Skip to content
Permalink
Newer
Older
100755 76 lines (59 sloc) 2.25 KB
August 18, 2016 10:17
1
#!/usr/bin/env beesh
2
3
# BEE_VERSION libxfcegui4-4.10.0-2
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]="http://archive.xfce.org/src/archive/libxfcegui4/${PKGVERSION[2]}/libxfcegui4-${PKGVERSION}.tar.bz2"
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
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
31
# build_in_sourcedir
32
33
###############################################################################
34
## Change the default (auto-detected) steps to
35
## extract, patch, configure/setup, build and install the software.
36
## Make sure the mee_install function does install everything to the
37
## image directory "${D}"
38
39
#mee_extract() {
40
# bee_extract "${@}"
41
#}
42
43
#mee_patch() {
44
# bee_patch "${@}"
45
#}
46
47
#mee_configure() {
48
# bee_configure
49
#}
50
51
#mee_build() {
52
# bee_build
53
#}
54
55
#mee_install() {
56
# bee_install
57
#}
58
## by default this may be 'make install DESTDIR="${D}"'
59
60
###############################################################################
61
##
62
## Additional hints:
63
##
64
## The name of this bee-file should follow the following naming convention:
65
## pkgname-pkgversion-pkgrevision.bee
66
##
67
## You may remove all comments as long as SRCURL[0]="" is set.
68
##
69
## Everything in this file will be executed in a bash environment.
70
##
71
## Build the package by executing
72
## './pkg-version-N.bee' or
73
## 'beesh ./pkg-version-N.bee'
74
##
75
## see http://beezinga.org/
76
##