wok view bastet/receipt @ rev 14975

Up: thunderbird (17.0.8esr)
author Dominique Corbex <domcox@slitaz.org>
date Thu Aug 08 22:20:49 2013 +0200 (2013-08-08)
parents e5ae411e1d8c
children 7d6089953592
line source
1 # SliTaz package receipt.
3 PACKAGE="bastet"
4 VERSION="0.43"
5 CATEGORY="games"
6 SHORT_DESC="Bastard tetris clone."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="ncurses libboost-program-options"
9 BUILD_DEPENDS="ncurses-dev libboost-dev libboost-program-options-dev"
10 TARBALL="$PACKAGE-$VERSION.tgz"
11 WEB_SITE="http://fph.altervista.org/prog/bastet.shtml"
12 WGET_URL="http://fph.altervista.org/prog/files/$TARBALL"
13 TAGS="tetris"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 make depend 2> /dev/null
20 make
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.scores2
29 chmod 666 $fs/var/games/bastet.scores2
30 }