Permalink
Newer
100755
79 lines (62 sloc)
2.46 KB
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://www.riverbankcomputing.com/static/Downloads/QScintilla/${PKGVERSION}/QScintilla_gpl-${PKGVERSION}.tar.gz"
13
SRCURL[0]="https://beehive.molgen.mpg.de/343cd0c2c8b425518df2e51eb994fbc6/QScintilla-2.11.6.tar.gz"
14
15
###############################################################################
16
## Add URLs/pathes to patch files to the PATCHURL array.
17
## The sources will be patched in the order of the array.
18
19
# PATCHURL+=()
20
21
###############################################################################
22
## Uncomment the next statement, if the software may not be able to be built
23
## outside the source directory and needs to be built inside the source
24
## directory.
25
26
build_in_sourcedir
27
28
###############################################################################
29
## bee cannot detect buildtypes specified in subdirectories.
30
## Sometimes packages "hide" the real sources in a subdirectory named
31
## 'src' or 'cmake' or ..
32
## use 'sourcesubdir_append' to specify this directory if known.
33
34
sourcesubdir_append Qt4Qt5
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}"
41
42
#mee_extract() {
43
# bee_extract "${@}"
44
#}
45
46
#mee_patch() {
47
# bee_patch "${@}"
48
#}
49
50
mee_configure() {
51
qmake
52
}
53
54
mee_build() {
55
make ${BEE_MAKEFLAGS}
56
}
57
58
mee_install() {
59
make install INSTALL_ROOT=${D}
60
}
61
## by default this may be 'make install DESTDIR="${D}"'
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
##