wok view singularity/receipt @ rev 6927

Fixed icedtea6-jdk (i hope). Added -j 1 back into it. Also changed JVM_BUILDDIR to src/openjdk.build/j2sdk-image so i will get packaged. Added comment to not change to -j 4 or tank will crash.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Oct 22 17:37:00 2010 +0000 (2010-10-22)
parents
children df6af0a6d256
line source
1 # SliTaz package receipt.
3 PACKAGE="singularity"
4 VERSION="0.30b"
5 CATEGORY="games"
6 SHORT_DESC="Strategy game - simulation of true Al"
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="python python-pygame libsdl-image libsdl-mixer python-numpy"
9 TARBALL="$PACKAGE-$VERSION-src.tar.gz"
10 WEB_SITE="http://emhsoft.com/singularity/index.html"
11 WGET_URL="http://endgame-singularity.googlecode.com/files/$TARBALL"
13 # Rules to gen a SliTaz package suitable for Tazpkg.
14 genpkg_rules()
15 {
16 mkdir -p $fs/usr/bin $fs/usr/share/singularity
17 cp -a $src/singularity.py $fs/usr/share/singularity
18 cat >> $fs/usr/bin/singularity <<EOT
19 #!/bin/sh
20 cd /usr/share/singularity
21 exec python singularity.py "$@"
22 EOT
23 chmod +x $fs/usr/bin/singularity
24 cp -R $src/code $src/data $fs/usr/share/singularity
25 }