wok-4.x view bastet/receipt @ rev 6928
Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Oct 22 22:36:22 2010 +0000 (2010-10-22) |
parents | 4ffc7c76d358 |
children | e5ae411e1d8c |
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 &&
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.scores2
29 chmod 666 $fs/var/games/bastet.scores2
30 }