wok-6.x view bastet/receipt @ rev 7674

Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 16 17:16:06 2010 +0000 (2010-12-16)
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 }