wok annotate supertux/receipt @ rev 7317

Up: mono to 2.8.1.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Nov 17 21:21:58 2010 +0000 (2010-11-17)
parents 4897058add72
children 8a32d9db2ad2
rev   line source
mallory@2114 1 # SliTaz package receipt.
mallory@2114 2
mallory@2114 3 PACKAGE="supertux"
mallory@2114 4 VERSION="0.1.3"
mallory@2114 5 CATEGORY="games"
mallory@2114 6 SHORT_DESC="SuperTux is a classic 2D jump'n run sidescroller game in a style similar to the original SuperMario games."
mallory@2114 7 MAINTAINER="mallory@skyrock.com"
jozee@5019 8 DEPENDS="libsdl libsdl-image libsdl-mixer"
jozee@5019 9 SUGGESTED="nvidia"
pankso@3425 10 BUILD_DEPENDS="libsdl-dev libsdl-image-dev libsdl-mixer-dev"
mallory@2114 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
mallory@2114 12 WEB_SITE="http://supertux.lethargik.org/"
mallory@2114 13 WGET_URL="http://download.berlios.de/supertux/$TARBALL"
mallory@2114 14
mallory@2114 15 # Rules to configure and make the package.
mallory@2114 16 compile_rules()
mallory@2114 17 {
mallory@2114 18 cd $src
mallory@2114 19 cp ../stuff/menu.h src
mallory@2114 20 ./configure --prefix=/usr --infodir=/usr/share/info \
mallory@2114 21 --mandir=/usr/share/man $CONFIGURE_ARGS && \
mallory@2114 22 make && make DESTDIR=$PWD/_pkg install
mallory@2114 23 }
mallory@2114 24
mallory@2114 25 # Rules to gen a SliTaz package suitable for Tazpkg.
mallory@2114 26 genpkg_rules()
mallory@2114 27 {
mallory@2114 28 mkdir -p $fs/usr
mallory@2114 29 cp -a $_pkg/usr/bin $fs/usr
mallory@2114 30 echo Copying data...
mallory@2114 31 cp -a $_pkg/usr/share $fs/usr
mallory@2114 32 }
mallory@2114 33