rev |
line source |
slaxemulator@6922
|
1 # SliTaz package receipt.
|
slaxemulator@6922
|
2
|
slaxemulator@6922
|
3 PACKAGE="singularity"
|
slaxemulator@11034
|
4 VERSION="0.30c"
|
slaxemulator@6922
|
5 CATEGORY="games"
|
slaxemulator@6922
|
6 SHORT_DESC="Strategy game - simulation of true Al"
|
slaxemulator@6922
|
7 MAINTAINER="slaxemulator@gmail.com"
|
pascal@15587
|
8 LICENSE="GPL2"
|
slaxemulator@6922
|
9 TARBALL="$PACKAGE-$VERSION-src.tar.gz"
|
slaxemulator@6922
|
10 WEB_SITE="http://emhsoft.com/singularity/index.html"
|
slaxemulator@6922
|
11 WGET_URL="http://endgame-singularity.googlecode.com/files/$TARBALL"
|
slaxemulator@6922
|
12
|
slaxemulator@11034
|
13 DEPENDS="python python-pygame libsdl-image libsdl-mixer python-numpy"
|
slaxemulator@11034
|
14 BUILD_DEPENDS="patch"
|
slaxemulator@11034
|
15
|
slaxemulator@6922
|
16 # Rules to gen a SliTaz package suitable for Tazpkg.
|
slaxemulator@6922
|
17 genpkg_rules()
|
slaxemulator@6922
|
18 {
|
gokhlayeh@6960
|
19 mkdir -p $fs/usr/bin $fs/usr/games/singularity
|
gokhlayeh@6960
|
20 cp -a $src/singularity.py $fs/usr/games/singularity
|
slaxemulator@6922
|
21 cat >> $fs/usr/bin/singularity <<EOT
|
slaxemulator@6922
|
22 #!/bin/sh
|
gokhlayeh@6960
|
23 cd /usr/games/singularity
|
slaxemulator@6922
|
24 exec python singularity.py "$@"
|
slaxemulator@6922
|
25 EOT
|
slaxemulator@6922
|
26 chmod +x $fs/usr/bin/singularity
|
gokhlayeh@6960
|
27 cp -a $src/code $src/data $fs/usr/games/singularity
|
slaxemulator@6922
|
28 }
|
slaxemulator@6922
|
29
|