wok view bastet/receipt @ rev 15274

mingw32-gcc: remove a wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 25 16:27:31 2013 +0000 (2013-09-25)
parents 5ba934d38936
children 17e313b5b9c1
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 LICENSE="GPL3"
9 DEPENDS="ncurses libboost-program-options"
10 BUILD_DEPENDS="ncurses-dev libboost-dev libboost-program-options-dev"
11 TARBALL="$PACKAGE-$VERSION.tgz"
12 WEB_SITE="http://fph.altervista.org/prog/bastet.shtml"
13 WGET_URL="http://fph.altervista.org/prog/files/$TARBALL"
14 TAGS="tetris"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 make depend 2> /dev/null
21 make
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/games $fs/var/games
28 cp -a $src/bastet $fs/usr/games
29 touch $fs/var/games/bastet.scores2
30 chmod 666 $fs/var/games/bastet.scores2
31 }