blob: db11d801fc522fd82e05afb91d26f6888f668943 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Maintainer: trya <tryagainprod@gmail.com>
pkgname=mamepgui
pkgver=1.6.0
pkgrel=3
pkgdesc="Frontend for SDLMAME/SDLMESS based on MAME Plus!"
arch=('i686' 'x86_64')
url="http://sourceforge.net/projects/mameplus"
license=('custom:WTFPL')
depends=('qt4' 'quazip-qt4')
optdepends=('sdlmame: port of MAME/MESS using SDL')
source=("http://et6.free.fr/temp/mamepgui-1.6.0.tar.gz"
'COPYING')
md5sums=('df681ca55de544a726ea3019e069ed98'
'389a9e29629d1f05e115f8f05c283df5')
prepare() {
cd "$srcdir/$pkgname"
# disable static compilation and SDL 1.3 linking
sed -e 's|CONFIG += build_static|#CONFIG += build_static|' \
-e 's|CONFIG += build_sdl|#CONFIG += build_sdl|' \
-i common_settings.pri
# use included libraries instead of installed ones
sed -e 's|LIBS += -L./lib/$${OSDIR}|QMAKE_LIBDIR += ./lib/$${OSDIR}|' \
-e 's|LIBS += -lquazip -llzma|LIBS += -lquazip -llzma -lz|' \
-e 's|TARGETDEPS +=|#TARGETDEPS +=|' \
-e 's|./lib/$${OSDIR}/libquazip.a|#./lib/$${OSDIR}/libquazip.a|' \
-e 's|./lib/$${OSDIR}/liblzma.a|#./lib/$${OSDIR}/liblzma.a|' \
-i mamepgui.pro
}
build() {
cd "$srcdir/$pkgname"
# build included liblzma.a (system one is not compatible)
cd lzma
qmake-qt4
make
# build mamepgui
cd ..
lrelease-qt4 mamepgui.pro
qmake-qt4
make
}
package() {
cd "$srcdir/$pkgname"
# install license
install -Dm644 "$srcdir/COPYING" "$pkgdir/usr/share/licenses/$pkgname/COPYING"
# copy documentation
install -d "$pkgdir/usr/share/doc/mamepgui"
cp docs/* "$pkgdir/usr/share/doc/mamepgui"
# install executable
install -Dm755 bin/mamepgui "$pkgdir/usr/bin/mamepgui"
}
|