# 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
}