Skip to content
Permalink
Newer
Older
100755 79 lines (61 sloc) 2.33 KB
1
#!/usr/bin/env beesh
June 6, 2016 09:50
2
3
# BEE_VERSION atkmm-2.28.0-0
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://ftp.gnome.org/pub/gnome/sources/atkmm/${PKGVERSION[2]}/atkmm-${PKGVERSION}.tar.xz"
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
18
# PATCHURL+=()
19
20
###############################################################################
21
## Uncomment the next statement, if the software may not be able to be built
22
## outside the source directory and needs to be built inside the source
23
## directory.
24
25
# build_in_sourcedir
26
27
###############################################################################
28
## bee cannot detect buildtypes specified in subdirectories.
29
## Sometimes packages "hide" the real sources in a subdirectory named
30
## 'src' or 'cmake' or ..
31
## use 'sourcesubdir_append' to specify this directory if known.
June 6, 2016 09:50
32
33
# sourcesubdir_append src
June 6, 2016 09:50
34
35
36
###############################################################################
37
## Change the default (auto-detected) steps to
38
## extract, patch, configure/setup, build and install the software.
39
## Make sure the mee_install function does install everything to the
40
## image directory "${D}"
June 6, 2016 09:50
41
42
#mee_extract() {
43
# bee_extract "${@}"
44
#}
June 6, 2016 09:50
45
46
#mee_patch() {
47
# bee_patch "${@}"
48
#}
June 6, 2016 09:50
49
50
#mee_configure() {
51
# bee_configure
52
#}
June 6, 2016 09:50
53
54
#mee_build() {
55
# bee_build
56
#}
June 6, 2016 09:50
57
58
#mee_install() {
59
# bee_install
60
#}
61
## by default this may be 'make install DESTDIR="${D}"'
June 6, 2016 09:50
62
63
###############################################################################
64
##
65
## Additional hints:
66
##
67
## The name of this bee-file should follow the following naming convention:
68
## pkgname-pkgversion-pkgrevision.bee
69
##
70
## You may remove all comments as long as SRCURL[0] is set.
71
##
72
## Everything in this file will be executed in a bash environment.
73
##
74
## Build the package by executing
75
## './pkg-version-N.bee' or
76
## 'beesh ./pkg-version-N.bee'
77
##
78
## see http://beezinga.org/
79
##