wok-4.x view ninvaders/receipt @ rev 153
Add JWM_MENU infos
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Jan 26 19:03:45 2008 +0100 (2008-01-26) |
parents | 67f32e5e811a |
children | cdac43c3f44f |
line source
1 # SliTaz package receipt.
3 PACKAGE="ninvaders"
4 VERSION="0.1.1"
5 CATEGORY="base-apps"
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"
12 JWM_MENU='Games:<Program icon="applications-other.png" label="nInvaders">xterm -bg black -fg white -e nInvaders</Program>'
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 }