wok annotate opentyrian/receipt @ rev 15001

Add some GPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 17:48:05 2013 +0000 (2013-08-10)
parents 11579844d239
children cfc6ddf8de74
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"
pascal@14277 7 MAINTAINER="mallory@sweetpeople.org"
pascal@15001 8 LICENSE="GPL2"
pascal@15001 9 WEB_SITE="http://code.google.com/p/opentyrian/"
pascal@15001 10 WGET_URL="mercurial|https://opentyrian.googlecode.com/hg/"
pascal@15001 11
gokhlayeh@8566 12 DEPENDS="libsdl libsdl-mixer libsdl-net tyrian"
gokhlayeh@8566 13 BUILD_DEPENDS="libsdl-dev libsdl-mixer-dev libsdl-net-dev mercurial"
gokhlayeh@8566 14
gokhlayeh@8566 15 # Rules to configure and make the package.
gokhlayeh@8566 16 compile_rules()
gokhlayeh@8566 17 {
gokhlayeh@8566 18 cd $src
gokhlayeh@8566 19 make release
gokhlayeh@8566 20 }
gokhlayeh@8566 21
gokhlayeh@8566 22 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@8566 23 genpkg_rules()
gokhlayeh@8566 24 {
gokhlayeh@8566 25 mkdir -p $fs/usr/bin $fs/usr/share/applications \
gokhlayeh@8566 26 $fs/usr/share/pixmaps $fs/usr/games/opentyrian
gokhlayeh@8566 27 cp $src/opentyrian $fs/usr/games/opentyrian
gokhlayeh@8566 28 cp $src/linux/opentyrian.desktop $fs/usr/share/applications
gokhlayeh@8566 29 cp $src/linux/icons/tyrian-32.png $fs/usr/share/pixmaps/opentyrian.png
gokhlayeh@8566 30 cat > $fs/usr/bin/opentyrian <<EOF
gokhlayeh@8566 31 #!/bin/sh
gokhlayeh@8566 32 here=$(pwd)
gokhlayeh@8566 33 cd /usr/games/opentyrian
gokhlayeh@8566 34 ./opentyrian
gokhlayeh@8566 35 cd $here
gokhlayeh@8566 36 EOF
gokhlayeh@8566 37 chmod +x $fs/usr/bin/opentyrian
gokhlayeh@8566 38 }
gokhlayeh@8566 39