games/tuxpuck: Initial import
This commit is contained in:
parent
e734dea83d
commit
78e0186652
|
@ -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.
|
||||
|
|
@ -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:
|
|
@ -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
|
|
@ -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"
|
Loading…
Reference in New Issue