wok view ninvaders/receipt @ rev 7842

Up: supertux to 0.3.3.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Dec 28 01:46:45 2010 +0000 (2010-12-28)
parents 3d99ecce2d4b
children e5ae411e1d8c
line source
1 # SliTaz package receipt.
3 PACKAGE="ninvaders"
4 VERSION="0.1.1"
5 CATEGORY="games"
6 SHORT_DESC="Space Invaders clone."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="ncurses"
9 BUILD_DEPENDS="ncurses-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://ninvaders.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 TAGS="shooting"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 make &&
20 strip nInvaders
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/games
27 cp -a $src/nInvaders $fs/usr/games
28 }