Skip to content
Permalink
Newer
Older
100755 89 lines (71 sloc) 2.69 KB
1
#!/usr/bin/env beesh
2
3
# BEE_VERSION wxWidgets-3.0.4-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
SRCURL[0]="https://github.com/wxWidgets/wxWidgets/releases/download/v${PKGVERSION}/wxWidgets-${PKGVERSION}.tar.bz2"
12
13
###############################################################################
14
## Add URLs/pathes to patch files to the PATCHURL array.
15
## The sources will be patched in the order of the array.
16
17
# PATCHURL+=()
18
19
###############################################################################
20
## Add filename patterns to the EXCLUDE array of files that should not
21
## be added to you package but may be present in the image directory.
22
23
# EXCLUDE+=()
24
25
###############################################################################
26
## Uncomment the next statement, if the software may not be able to be build
27
## outside the source directory and need to be build inside the source
28
## directory.
29
30
# build_in_sourcedir
31
32
###############################################################################
33
## bee cannot detect buildtypes specified in subdirectories.
34
## Sometimes packages "hide" the real sources in a subdirectory named
35
## 'src' or 'cmake' or ..
36
## use 'sourcesubdir_append' to specify this directory if known.
37
38
# sourcesubdir_append src
39
40
###############################################################################
41
## Change the default (auto-detected) steps to
42
## extract, patch, configure/setup, build and install the software.
43
## Make sure the mee_install function does install everything to the
44
## image directory "${D}"
45
46
#mee_extract() {
47
# bee_extract "${@}"
48
#}
49
50
#mee_patch() {
51
# bee_patch "${@}"
52
#}
53
54
#mee_configure() {
55
# bee_configure
56
#}
57
58
mee_configure() {
59
bee_configure \
60
--enable-unicode \
61
--with-sdl \
62
--enable-compat24
63
}
64
#mee_build() {
65
# bee_build
66
#}
67
68
#mee_install() {
69
# bee_install
70
#}
71
## by default this may be 'make install DESTDIR="${D}"'
72
73
###############################################################################
74
##
75
## Additional hints:
76
##
77
## The name of this bee-file should follow the following naming convention:
78
## pkgname-pkgversion-pkgrevision.bee
79
##
80
## You may remove all comments as long as SRCURL[0]="" is set.
81
##
82
## Everything in this file will be executed in a bash environment.
83
##
84
## Build the package by executing
85
## './pkg-version-N.bee' or
86
## 'beesh ./pkg-version-N.bee'
87
##
88
## see http://beezinga.org/
89
##