wok view ninvaders/receipt @ rev 1101

libpng: install libpng.so (compat)
author Christophe Lincoln <pankso@slitaz.org>
date Fri Jul 18 21:55:28 2008 +0200 (2008-07-18)
parents e049aa4a9c6a
children 3d99ecce2d4b
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://ninvaders.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 make
18 strip nInvaders
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/games
25 cp -a $src/nInvaders $fs/usr/games
26 }