diff options
author | Zach Lewis <koni@archlinux.us> | 2013-06-20 08:47:31 -0300 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2013-06-20 08:47:31 -0300 |
commit | 4d3519892f2ac5bbc6822922517943da1e5435ce (patch) | |
tree | a91819ab34de95e3e473dd34d22542846282f6c7 /games/tintin/tintin.SlackBuild | |
parent | a3b91db3514e14eee42daf6044bb2ee5b31daaec (diff) | |
download | slackbuilds-4d3519892f2ac5bbc6822922517943da1e5435ce.tar.gz |
games/tintin: Added (console MUD client)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'games/tintin/tintin.SlackBuild')
-rw-r--r-- | games/tintin/tintin.SlackBuild | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/games/tintin/tintin.SlackBuild b/games/tintin/tintin.SlackBuild new file mode 100644 index 0000000000..1b41c46138 --- /dev/null +++ b/games/tintin/tintin.SlackBuild @@ -0,0 +1,78 @@ +#!/bin/sh +# Slackware build script for tintin++ +PRGNAM=tintin +VERSION=${VERSION:-2.00.9} +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 +rm -rf $TMP/$PRGNAM-$VERSION +cd $TMP +tar -zxvf $CWD/$PRGNAM-$VERSION.tar.gz + +#There's a discrepancy in naming convention here. +#Just renaming the unpacked source to be consistent. +mv tt $PRGNAM-$VERSION + +cd $PRGNAM-$VERSION/src + +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" \ +./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + +make +make install 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 +cd $TMP/$PRGNAM-$VERSION +cp -a FAQ INSTALL COPYING CREDITS README TODO docs/ $PKG/usr/doc/$PRGNAM-$VERSION +find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \; + +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} |