# HG changeset patch # User Antoine Bodin # Date 1297634276 -3600 # Node ID 8fed7e596e79d8c7123f55888d22da90bd342444 # Parent 23b7c2a99749c458d3602332c183731e6a0a0a61 imported patch get/tyrian diff -r 23b7c2a99749 -r 8fed7e596e79 tyrian/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tyrian/receipt Sun Feb 13 22:57:56 2011 +0100 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="tyrian" +VERSION="21" +CATEGORY="non-free" +SHORT_DESC="Tyrian is a the DOS shoot-em-up;you need open-tyrian to run it." +MAINTAINER="mallory@skyrock.com" +BUILD_DEPENDS="wget" +TARBALL="$PACKAGE$VERSION.zip" +WEB_SITE="http://code.google.com/p/opentyrian/" +WGET_URL="https://sites.google.com/a/camanis.net/opentyrian/tyrian/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + : +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/games/opentyrian + cd $src + for file in *; do + [ "$file" = "${file%.exe}" ] || continue + [ "$file" = "${file%.doc}" ] || continue + cp $file $fs/usr/games/opentyrian + done +} +