contrib/pytego/Pkgfile
2006-11-13 21:12:21 +01:00

26 lines
584 B
Plaintext

# Description: stratego for pygame
# URL: http://members.cox.net/churchillrm/projects.html
# Maintainer: Han Boetes <han@mijncomputer.nl>
# Packager: Han Boetes <han@mijncomputer.nl>
# Depends on: pygame
name=pytego
version=0.02
release=1
source="http://members.cox.net/churchillrm/$name-$version.tar.gz"
build()
{
cd $name-$version
install -d $PKG/usr/{bin,games/$name}
cp -r *.py data $PKG/usr/games/$name
# Lets make a wrapper.
cat << EOF > $PKG/usr/bin/$name
#!/bin/sh
cd /usr/games/$name
python $name.py
EOF
chmod 755 $PKG/usr/bin/$name
}