wok view bastet/receipt @ rev 4230

Fix: patch xfe to build with gcc-4.x
author Christophe Lincoln <pankso@slitaz.org>
date Thu Sep 24 15:03:32 2009 +0200 (2009-09-24)
parents 3e8ffa6ff731
children 74c0ed135339
line source
1 # SliTaz package receipt.
3 PACKAGE="bastet"
4 VERSION="0.41"
5 CATEGORY="games"
6 SHORT_DESC="Bastard tetris clone."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="ncurses"
9 BUILD_DEPENDS="ncurses-dev"
10 TARBALL="$PACKAGE-$VERSION.tgz"
11 WEB_SITE="http://fph.altervista.org/prog/bastet.shtml"
12 WGET_URL="http://fph.altervista.org/prog/bastet-0.41.tgz"
13 TAGS="tetris"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 make &&
20 strip bastet
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/games $fs/var/games
27 cp -a $src/bastet $fs/usr/games
28 touch $fs/var/games/bastet.scores
29 chmod 666 $fs/var/games/bastet.scores
30 }