diff options
author | Erik Hanson <erik@slackbuilds.org> | 2010-05-11 14:28:23 +0200 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-05-11 14:28:23 +0200 |
commit | 78e0186652e4fcf30843b65534bf65049936de8c (patch) | |
tree | 9dbb642cc7fec02fd0981c83ba3d7f1b0695fc2a /games | |
parent | e734dea83dd349a62ebd87e6d8f4b6bc97d86f6c (diff) | |
download | slackbuilds-78e0186652e4fcf30843b65534bf65049936de8c.tar.gz |
games/tuxpuck: Initial import
Diffstat (limited to 'games')
-rw-r--r-- | games/tuxpuck/README | 7 | ||||
-rw-r--r-- | games/tuxpuck/slack-desc | 11 | ||||
-rw-r--r-- | games/tuxpuck/tuxpuck.SlackBuild | 47 | ||||
-rw-r--r-- | games/tuxpuck/tuxpuck.info | 8 |
4 files changed, 73 insertions, 0 deletions
diff --git a/games/tuxpuck/README b/games/tuxpuck/README new file mode 100644 index 0000000000..147e92e6eb --- /dev/null +++ b/games/tuxpuck/README @@ -0,0 +1,7 @@ +Tuxpuck - Airhockey with a Twist + +Tuxpuck is a clone of the Amiga/AtariST game "Shufflepuck Cafe" +It is written in C and uses SDL. The player moves a pad around +a board and tries to shoot down the puck through the opponents +defense. + diff --git a/games/tuxpuck/slack-desc b/games/tuxpuck/slack-desc new file mode 100644 index 0000000000..7a329ca6a7 --- /dev/null +++ b/games/tuxpuck/slack-desc @@ -0,0 +1,11 @@ +tuxpuck: Tuxpuck - Airhockey with a Twist +tuxpuck: +tuxpuck: Tuxpuck is a clone of the Amiga/AtariST game "Shufflepuck Cafe" +tuxpuck: It is written in C and uses SDL. The player moves a pad around +tuxpuck: a board and tries to shoot down the puck through the opponents +tuxpuck: defense. +tuxpuck: +tuxpuck: http://home.no.net/munsuun/tuxpuck/ +tuxpuck: +tuxpuck: +tuxpuck: diff --git a/games/tuxpuck/tuxpuck.SlackBuild b/games/tuxpuck/tuxpuck.SlackBuild new file mode 100644 index 0000000000..6a8b739199 --- /dev/null +++ b/games/tuxpuck/tuxpuck.SlackBuild @@ -0,0 +1,47 @@ +#!/bin/sh + +# Slackware build script for tuxpuck +# Written by Erik Hanson erik@slackbuilds.org + +# Modified by the SlackBuilds.org project + +PRGNAM=tuxpuck +VERSION=0.8.2 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +CWD=`pwd` +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +fi + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP || exit 1 +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1 +cd $PRGNAM-$VERSION || exit 1 +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +CFLAGS="$SLKCFLAGS" make || exit 1 +make install DESTDIR=$PKG || exit 1 + +find $PKG | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null +find $PKG | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp COPYING readme.txt $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/games/tuxpuck/tuxpuck.info b/games/tuxpuck/tuxpuck.info new file mode 100644 index 0000000000..c6ae510ad1 --- /dev/null +++ b/games/tuxpuck/tuxpuck.info @@ -0,0 +1,8 @@ +PRGNAM="tuxpuck" +VERSION="0.8.2" +HOMEPAGE="http://home.no.net/munsuun/tuxpuck/" +DOWNLOAD="http://home.no.net/munsuun/tuxpuck/files/tuxpuck-0.8.2.tar.gz" +MD5SUM="fc839abc2b1f3eafae397e1ed6487079" +MAINTAINER="Erik Hanson" +EMAIL="erik@slackbuilds.org" +APPROVED="elohim,robw810" |