diff options
author | Steve Pledger <spledger91@yahoo.com> | 2011-07-19 08:10:44 -0300 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-07-21 22:52:12 -0500 |
commit | 303076bf4a607464b20dfea83967c2ba7b3cd411 (patch) | |
tree | 6d5678b86abbb007d461a39d98110f6573473f82 | |
parent | 706e0fededc0434fb5f730d21caa1d156fda2133 (diff) | |
download | slackbuilds-303076bf4a607464b20dfea83967c2ba7b3cd411.tar.gz |
games/puzzles: Added (puzzle games)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
-rw-r--r-- | games/puzzles/README | 2 | ||||
-rw-r--r-- | games/puzzles/puzzles.SlackBuild | 73 | ||||
-rw-r--r-- | games/puzzles/puzzles.info | 10 | ||||
-rw-r--r-- | games/puzzles/slack-desc | 19 |
4 files changed, 104 insertions, 0 deletions
diff --git a/games/puzzles/README b/games/puzzles/README new file mode 100644 index 0000000000..b464757cf5 --- /dev/null +++ b/games/puzzles/README @@ -0,0 +1,2 @@ +This is a collection of puzzle games written by Simon Tatham. They run +natively on various platforms including Linux, Windows, and Mac OS X. diff --git a/games/puzzles/puzzles.SlackBuild b/games/puzzles/puzzles.SlackBuild new file mode 100644 index 0000000000..90b54d08a0 --- /dev/null +++ b/games/puzzles/puzzles.SlackBuild @@ -0,0 +1,73 @@ +#!/bin/sh + +# Slackware build script for puzzles +# Written by Steve Pledger <spledger91@yahoo.com> + +PRGNAM=puzzles +VERSION=${VERSION:-r9179} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +make + +mkdir -p $PKG/usr/games +make install prefix=/usr DESTDIR=$PKG + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + HACKING LICENCE README \ + $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.${PKGTYPE:-tgz} diff --git a/games/puzzles/puzzles.info b/games/puzzles/puzzles.info new file mode 100644 index 0000000000..70fa05a86e --- /dev/null +++ b/games/puzzles/puzzles.info @@ -0,0 +1,10 @@ +PRGNAM="puzzles" +VERSION="r9179" +HOMEPAGE="http://www.chiark.greenend.org.uk/~sgtatham/puzzles/" +DOWNLOAD="http://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles-r9179.tar.gz" +MD5SUM="14e4c9963acc3c2558c1680924eafb95" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Steve Pledger" +EMAIL="spledger91@yahoo.com" +APPROVED="Niels Horn" diff --git a/games/puzzles/slack-desc b/games/puzzles/slack-desc new file mode 100644 index 0000000000..2359f070a5 --- /dev/null +++ b/games/puzzles/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +puzzles: puzzles (puzzle games) +puzzles: +puzzles: This is a collection of puzzle games written by Simon Tatham. They run +puzzles: natively on various platforms including Linux, Windows, and Mac OS X. +puzzles: +puzzles: Homepage: http://www.chiark.greenend.org.uk/~sgtatham/puzzles/ +puzzles: +puzzles: +puzzles: +puzzles: +puzzles: |