wok view singularity/receipt @ rev 12766

ecm: Sync with wok-tank. Add ecm-extras.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 12 11:12:53 2012 +0000 (2012-05-12)
parents df6af0a6d256
children 164fcaca1cd0
line source
1 # SliTaz package receipt.
3 PACKAGE="singularity"
4 VERSION="0.30c"
5 CATEGORY="games"
6 SHORT_DESC="Strategy game - simulation of true Al"
7 MAINTAINER="slaxemulator@gmail.com"
8 TARBALL="$PACKAGE-$VERSION-src.tar.gz"
9 WEB_SITE="http://emhsoft.com/singularity/index.html"
10 WGET_URL="http://endgame-singularity.googlecode.com/files/$TARBALL"
12 DEPENDS="python python-pygame libsdl-image libsdl-mixer python-numpy"
13 BUILD_DEPENDS="patch"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 mkdir -p $fs/usr/bin $fs/usr/games/singularity
19 cp -a $src/singularity.py $fs/usr/games/singularity
20 cat >> $fs/usr/bin/singularity <<EOT
21 #!/bin/sh
22 cd /usr/games/singularity
23 exec python singularity.py "$@"
24 EOT
25 chmod +x $fs/usr/bin/singularity
26 cp -a $src/code $src/data $fs/usr/games/singularity
27 }