Skip to content
Permalink
Newer
Older
100755 41 lines (30 sloc) 843 Bytes
October 21, 2019 14:58
1
#!/usr/bin/env beesh
2
3
# BEE_VERSION audacious-plugins-4.1-0
October 21, 2019 14:58
4
5
# more info: https://audacious-media-player.org/
6
# https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=audacious-qt5
7
8
# SRCURL[0]="https://distfiles.audacious-media-player.org/audacious-plugins-${PKGVERSION}.tar.bz2"
9
SRCURL[0]="https://beehive.molgen.mpg.de/740d83757b49b82bc75e256c96b09bfd/audacious-plugins-4.1.tar.bz2"
October 21, 2019 14:58
10
11
# PATCHURL+=()
12
13
build_in_sourcedir
14
15
# sourcesubdir_append src
16
17
#mee_extract() {
18
# bee_extract "${@}"
19
#}
20
21
mee_patch() {
22
bee_patch "${@}"
23
sed -i '/^LOCALES/ s/LOCALES/LOCALES = \nNOPE_LOCALES/' po/Makefile
24
}
October 21, 2019 14:58
25
26
mee_configure() {
27
export TERM=dumb
28
bee_configure \
29
--with-buildstamp='MarIuX' \
30
--enable-qt \
31
--disable-gtk \
32
--disable-nls
33
}
34
35
#mee_build() {
36
# bee_build
37
#}
38
39
#mee_install() {
40
# bee_install
41
#}