wok-stable annotate scummvm/receipt @ rev 12465

Up e2fsprogs (1.44.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 04 18:42:23 2019 +0100 (2019-03-04)
parents c73ccae3c3f3
children
rev   line source
gokhlayeh@6432 1 # SliTaz package receipt.
gokhlayeh@6432 2
gokhlayeh@6432 3 PACKAGE="scummvm"
admin@12392 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@12329 7 MAINTAINER="admin@trixarian.net"
slaxemulator@10974 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
slaxemulator@10974 9 WEB_SITE="http://www.scummvm.org/"
slaxemulator@10974 10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
slaxemulator@10974 11 CROSS="bug: Doesn't support --build."
slaxemulator@10974 12
admin@12329 13 DEPENDS="gcc-lib-base alsa-lib libmad libmpeg2 libogg libsdl libvorbis flac zlib"
admin@12329 14 BUILD_DEPENDS="alsa-lib-dev libmad-dev libmpeg2-dev libogg-dev libsdl-dev libvorbis-dev flac-dev zlib-dev"
gokhlayeh@6432 15
gokhlayeh@6432 16 # Rules to configure and make the package.
gokhlayeh@6432 17 compile_rules()
gokhlayeh@6432 18 {
gokhlayeh@6432 19 cd $src
gokhlayeh@6432 20 ./configure \
pascal@9115 21 --prefix=/usr \
slaxemulator@6777 22 --datadir=/usr/games/scummvm \
gokhlayeh@6432 23 --backend=sdl --disable-debug \
gokhlayeh@6432 24 --with-flac-prefix=/usr \
slaxemulator@10345 25 --disable-fluidsynth \
slaxemulator@10345 26 --host=$HOST_SYSTEM &&
pascal@9031 27 make && make install && {
pascal@9031 28 mkdir -p $DESTDIR/usr/share/applications
pascal@9031 29 cp -a dists/scummvm.desktop $DESTDIR/usr/share/applications
pascal@9031 30 }
gokhlayeh@6432 31 }
gokhlayeh@6432 32
gokhlayeh@6432 33 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@6432 34 genpkg_rules()
gokhlayeh@6432 35 {
gokhlayeh@6438 36 mkdir -p $fs/usr/share/applications $fs/usr/games
gokhlayeh@6432 37 cp -a $_pkg/usr/bin $fs/usr
gokhlayeh@6438 38 cp -a $_pkg/usr/games/scummvm $fs/usr/games
pascal@9031 39 cp -a $_pkg/usr/share/applications/scummvm.desktop $fs/usr/share/applications
gokhlayeh@6432 40 }
gokhlayeh@6432 41