wok-4.x 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 | 455cdb107cc9 |
children | a475da79c28a |
files | beneath-a-steel-sky/receipt beneath-a-steel-sky/stuff/beneath.desktop scummvm/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/beneath-a-steel-sky/receipt Mon Sep 27 18:03:47 2010 +0200 1.3 @@ -0,0 +1,21 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="beneath-a-steel-sky" 1.7 +VERSION="1.2" 1.8 +CATEGORY="games" 1.9 +SHORT_DESC="Beneath A Steel Sky is a 2D point-and-click science fiction thriller." 1.10 +MAINTAINER=" gokhlayeh@mailoo.org" 1.11 +DEPENDS="scummvm" 1.12 +SOURCE="bass-cd" 1.13 +TARBALL="$SOURCE-$VERSION.zip" 1.14 +WEB_SITE="http://www.revolution.co.uk/_display.php?id=16" 1.15 +WGET_URL="http://downloads.sourceforge.net/scummvm/$TARBALL" 1.16 + 1.17 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.18 +genpkg_rules() 1.19 +{ 1.20 + mkdir -p $fs/usr/share/applications $fs/usr/share/bass 1.21 + cp -a $src/sky* $fs/usr/share/bass 1.22 + cp -a stuff/*.desktop $fs/usr/share/applications 1.23 +} 1.24 +
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/beneath-a-steel-sky/stuff/beneath.desktop Mon Sep 27 18:03:47 2010 +0200 2.3 @@ -0,0 +1,9 @@ 2.4 +[Desktop Entry] 2.5 +Name=Beneath A Steel Sky 2.6 +Comment=2D point-and-click science fiction thriller 2.7 +Exec=scummvm -f -p /usr/share/bass sky 2.8 +Icon=scummvm 2.9 +Terminal=false 2.10 +Type=Application 2.11 +Categories=Game;AdventureGame; 2.12 +StartupNotify=false
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/scummvm/receipt Mon Sep 27 18:03:47 2010 +0200 3.3 @@ -0,0 +1,36 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="scummvm" 3.7 +VERSION="1.1.1" 3.8 +CATEGORY="games" 3.9 +SHORT_DESC="A 'virtual machine' for several classic graphical point-and-click adventure games." 3.10 +MAINTAINER="gokhlayeh@mailoo.org" 3.11 +DEPENDS="gcc-lib-base alsa-lib libmad libvorbis flac libsdl" 3.12 +BUILD_DEPENDS="alsa-lib-dev libmad-dev libvorbis-dev flac-dev libsdl-dev zlib-dev" 3.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 3.14 +WEB_SITE="http://www.scummvm.org/" 3.15 +WGET_URL="http://downloads.sourceforge.net/sourceforge/$PACKAGE/$TARBALL" 3.16 + 3.17 +# Rules to configure and make the package. 3.18 +compile_rules() 3.19 +{ 3.20 + cd $src 3.21 + ./configure \ 3.22 + --prefix=/usr \ 3.23 + --mandir=/usr/share/man \ 3.24 + --backend=sdl --disable-debug \ 3.25 + --with-mpeg2-prefix=/usr \ 3.26 + --with-flac-prefix=/usr \ 3.27 + --disable-fluidsynth && 3.28 + make -j 4 && make DESTDIR=$PWD/_pkg install 3.29 +} 3.30 + 3.31 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.32 +genpkg_rules() 3.33 +{ 3.34 + mkdir -p $fs/usr/share/applications 3.35 + cp -a $_pkg/usr/bin $fs/usr 3.36 + cp -a $_pkg/usr/share/scummvm $fs/usr/share 3.37 + cp -a $src/dists/scummvm.desktop $fs/usr/share/applications 3.38 +} 3.39 +