summaryrefslogtreecommitdiffstats
path: root/games/toga2/toga2.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'games/toga2/toga2.SlackBuild')
-rw-r--r--games/toga2/toga2.SlackBuild75
1 files changed, 0 insertions, 75 deletions
diff --git a/games/toga2/toga2.SlackBuild b/games/toga2/toga2.SlackBuild
deleted file mode 100644
index 1185d1c9e1..0000000000
--- a/games/toga2/toga2.SlackBuild
+++ /dev/null
@@ -1,75 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for toga2
-
-# Written by Marco Pessotto <melmothx@gmail.com>
-
-PRGNAM=toga2
-VERSION=${VERSION:-141SE_posix}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-# Automatically determine the architecture we're building on:
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i486 ;;
- arm*) ARCH=arm ;;
- # Unless $ARCH is already set, use uname -m for all other archs:
- *) 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
-mkdir -p $PRGNAM-$VERSION
-cd $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd src # weird tarball
-chmod -R u+w,go+r-w,a-s .
-chown -R root:root .
-
-make CXXFLAGS="-pipe $SLKCFLAGS \
- -fno-exceptions -fno-rtti -Wall \
- -fstrict-aliasing -fomit-frame-pointer"
-strip --strip-unneeded $PRGNAM
-mkdir -p $PKG/usr/games
-cp $PRGNAM $PKG/usr/games
-
-## Add the manpage (Thanks to Debian)
-mkdir -p $PKG/usr/man/man6
-cat $CWD/$PRGNAM.6.gz > $PKG/usr/man/man6/$PRGNAM.6.gz
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- CHANGELOG COPYING copying.txt LICENSE 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.${PKGTYPE:-tgz}