wok-next view scummvm/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents 7506b35e1c6f
children 0f2575775b2d
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="devel@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://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"
18 compile_rules() {
19 ./configure \
20 --prefix=/usr \
21 --datadir=/usr/games/scummvm \
22 --backend=sdl \
23 --disable-debug \
24 --with-flac-prefix=/usr \
25 --disable-fluidsynth \
26 --host=$HOST_SYSTEM &&
27 make &&
28 make install || return 1
30 mkdir -p $install/usr/share/applications
31 cp -a dists/scummvm.desktop $install/usr/share/applications
32 }
34 genpkg_rules() {
35 copy @std
36 DEPENDS="alsa-lib libmad libmpeg2 libogg libsdl libvorbis flac zlib"
37 }