wok annotate scummvm/receipt @ rev 17157

syslinux: fix rockridge (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Sep 15 23:31:45 2014 +0200 (2014-09-15)
parents 7896f0694ef6
children 6135577f4d08
rev   line source
gokhlayeh@6432 1 # SliTaz package receipt.
gokhlayeh@6432 2
gokhlayeh@6432 3 PACKAGE="scummvm"
admin@14635 4 VERSION="1.6.0"
gokhlayeh@6432 5 CATEGORY="games"
gokhlayeh@6432 6 SHORT_DESC="A 'virtual machine' for several classic graphical point-and-click adventure games."
admin@13392 7 MAINTAINER="admin@trixarian.net"
pascal@15002 8 LICENSE="GPL2"
slaxemulator@10974 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
slaxemulator@10974 10 WEB_SITE="http://www.scummvm.org/"
slaxemulator@10974 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
slaxemulator@10974 12 CROSS="bug: Doesn't support --build."
pascal@15002 13
admin@13392 14 DEPENDS="gcc-lib-base alsa-lib libmad libmpeg2 libogg libsdl libvorbis flac zlib"
admin@13392 15 BUILD_DEPENDS="alsa-lib-dev libmad-dev libmpeg2-dev libogg-dev libsdl-dev libvorbis-dev flac-dev zlib-dev"
gokhlayeh@6432 16
gokhlayeh@6432 17 # Rules to configure and make the package.
gokhlayeh@6432 18 compile_rules()
gokhlayeh@6432 19 {
gokhlayeh@6432 20 cd $src
gokhlayeh@6432 21 ./configure \
pascal@9115 22 --prefix=/usr \
slaxemulator@6777 23 --datadir=/usr/games/scummvm \
gokhlayeh@6432 24 --backend=sdl --disable-debug \
gokhlayeh@6432 25 --with-flac-prefix=/usr \
slaxemulator@10345 26 --disable-fluidsynth \
slaxemulator@10345 27 --host=$HOST_SYSTEM &&
pascal@9031 28 make && make install && {
pascal@9031 29 mkdir -p $DESTDIR/usr/share/applications
pascal@9031 30 cp -a dists/scummvm.desktop $DESTDIR/usr/share/applications
pascal@9031 31 }
gokhlayeh@6432 32 }
gokhlayeh@6432 33
gokhlayeh@6432 34 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@6432 35 genpkg_rules()
gokhlayeh@6432 36 {
gokhlayeh@6438 37 mkdir -p $fs/usr/share/applications $fs/usr/games
pascal@15603 38 cp -a $install/usr/bin $fs/usr
pascal@15603 39 cp -a $install/usr/games/scummvm $fs/usr/games
pascal@15603 40 cp -a $install/usr/share/applications/scummvm.desktop $fs/usr/share/applications
gokhlayeh@6432 41 }
gokhlayeh@6432 42