wok view ninvaders/receipt @ rev 3131

Add: bin86 (8086 assembler and linker)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed May 20 11:27:00 2009 +0200 (2009-05-20)
parents eb4e6a1af180
children bee79018e13a
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"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 make &&
19 strip nInvaders
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/games
26 cp -a $src/nInvaders $fs/usr/games
27 }