-
Notifications
You must be signed in to change notification settings - Fork 0
Permalink
bee-files/texstudio.be0
Newer
100755
35 lines (23 sloc)
628 Bytes
1
#!/usr/bin/env beesh
2
3
# BEE_VERSION texstudio-2.12.4-0
4
5
SRCURL[0]="https://downloads.sourceforge.net/project/texstudio/texstudio/TeXstudio%20${PKGVERSION}/texstudio-${PKGVERSION}.tar.gz"
6
7
# PATCHURL+=()
8
9
# EXCLUDE+=()
10
11
# build_in_sourcedir
12
13
# sourcesubdir_append src
14
15
16
#mee_extract() {
17
# bee_extract "${@}"
18
#}
19
20
#mee_patch() {
21
# bee_patch "${@}"
22
#}
23
24
mee_configure() {
25
start_cmd qmake PREFIX=${PREFIX} ${S}/texstudio.pro
26
}
27
28
mee_build() {
29
start_cmd make ${BEE_MAKEFLAGS} "${@}"
30
}
31
32
mee_install() {
33
start_cmd make ${BEE_MAKEFLAGS} install INSTALL_ROOT=${D}
34
}
35
## by default this may be 'make install DESTDIR="${D}"'