wok annotate opentyrian/receipt @ rev 8566

imported patch get/opentyrian
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sun Feb 13 22:57:56 2011 +0100 (2011-02-13)
parents
children e8768e5178a6
rev   line source
gokhlayeh@8566 1 # SliTaz package receipt.
gokhlayeh@8566 2
gokhlayeh@8566 3 PACKAGE="opentyrian"
gokhlayeh@8566 4 VERSION="r886"
gokhlayeh@8566 5 CATEGORY="games"
gokhlayeh@8566 6 SHORT_DESC="OpenTyrian is a port of the DOS shoot-em-up Tyrian"
gokhlayeh@8566 7 MAINTAINER="mallory@skyrock.com"
gokhlayeh@8566 8 DEPENDS="libsdl libsdl-mixer libsdl-net tyrian"
gokhlayeh@8566 9 BUILD_DEPENDS="libsdl-dev libsdl-mixer-dev libsdl-net-dev mercurial"
gokhlayeh@8566 10 SOURCE="opentyrian"
gokhlayeh@8566 11 WEB_SITE="http://code.google.com/p/opentyrian/"
gokhlayeh@8566 12 WGET_URL="mercurial|https://opentyrian.googlecode.com/hg/"
gokhlayeh@8566 13
gokhlayeh@8566 14 # Rules to configure and make the package.
gokhlayeh@8566 15 compile_rules()
gokhlayeh@8566 16 {
gokhlayeh@8566 17 cd $src
gokhlayeh@8566 18 make release
gokhlayeh@8566 19 }
gokhlayeh@8566 20
gokhlayeh@8566 21 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@8566 22 genpkg_rules()
gokhlayeh@8566 23 {
gokhlayeh@8566 24 mkdir -p $fs/usr/bin $fs/usr/share/applications \
gokhlayeh@8566 25 $fs/usr/share/pixmaps $fs/usr/games/opentyrian
gokhlayeh@8566 26 cp $src/opentyrian $fs/usr/games/opentyrian
gokhlayeh@8566 27 cp $src/linux/opentyrian.desktop $fs/usr/share/applications
gokhlayeh@8566 28 cp $src/linux/icons/tyrian-32.png $fs/usr/share/pixmaps/opentyrian.png
gokhlayeh@8566 29 cat > $fs/usr/bin/opentyrian <<EOF
gokhlayeh@8566 30 #!/bin/sh
gokhlayeh@8566 31 here=$(pwd)
gokhlayeh@8566 32 cd /usr/games/opentyrian
gokhlayeh@8566 33 ./opentyrian
gokhlayeh@8566 34 cd $here
gokhlayeh@8566 35 EOF
gokhlayeh@8566 36 chmod +x $fs/usr/bin/opentyrian
gokhlayeh@8566 37 }
gokhlayeh@8566 38