wok view scummvm/receipt @ rev 6432

Add: scummvm 1.1.1, beneath-a-steel-sky 1.2
author Antoine Bodin <gokhlayeh@mailoo.org>
date Mon Sep 27 18:03:47 2010 +0200 (2010-09-27)
parents
children e6d42611d599
line source
1 # SliTaz package receipt.
3 PACKAGE="scummvm"
4 VERSION="1.1.1"
5 CATEGORY="games"
6 SHORT_DESC="A 'virtual machine' for several classic graphical point-and-click adventure games."
7 MAINTAINER="gokhlayeh@mailoo.org"
8 DEPENDS="gcc-lib-base alsa-lib libmad libvorbis flac libsdl"
9 BUILD_DEPENDS="alsa-lib-dev libmad-dev libvorbis-dev flac-dev libsdl-dev zlib-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.scummvm.org/"
12 WGET_URL="http://downloads.sourceforge.net/sourceforge/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --mandir=/usr/share/man \
21 --backend=sdl --disable-debug \
22 --with-mpeg2-prefix=/usr \
23 --with-flac-prefix=/usr \
24 --disable-fluidsynth &&
25 make -j 4 && make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/share/applications
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/share/scummvm $fs/usr/share
34 cp -a $src/dists/scummvm.desktop $fs/usr/share/applications
35 }