wok-next view scummvm/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents 051931e905b0
children 7506b35e1c6f
line source
1 # SliTaz package receipt v2.
3 PACKAGE="scummvm"
4 VERSION="1.6.0"
5 CATEGORY="games"
6 SHORT_DESC="A 'virtual machine' for several classic graphical point-and-click \
7 adventure games"
8 MAINTAINER="admin@trixarian.net"
9 LICENSE="GPL2"
10 WEB_SITE="http://www.scummvm.org/"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 BUILD_DEPENDS="alsa-lib-dev libmad-dev libmpeg2-dev libogg-dev libsdl-dev \
16 libvorbis-dev flac-dev zlib-dev"
17 CROSS="bug: Doesn't support --build."
19 compile_rules() {
20 ./configure \
21 --prefix=/usr \
22 --datadir=/usr/games/scummvm \
23 --backend=sdl \
24 --disable-debug \
25 --with-flac-prefix=/usr \
26 --disable-fluidsynth \
27 --host=$HOST_SYSTEM &&
28 make && make install || return 1
30 mkdir -p $DESTDIR/usr/share/applications
31 cp -a dists/scummvm.desktop $DESTDIR/usr/share/applications
32 }
34 genpkg_rules() {
35 copy @std
36 DEPENDS="alsa-lib libmad libmpeg2 libogg libsdl libvorbis flac zlib"
37 }