diff options
author | B. Watson <yalhcru@gmail.com> | 2012-12-16 17:42:24 -0500 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2012-12-23 09:16:16 -0500 |
commit | 68c6af916d3af4f94b120149a42d268362639f73 (patch) | |
tree | 1d5357bcd87e6493af061910f69e941de0c80722 /development/inform/inform.SlackBuild | |
parent | 1bbaa71fc8329a943d4cb35f8b74229d4db1f265 (diff) |
development/inform: Added (interactive fiction compiler)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development/inform/inform.SlackBuild')
-rw-r--r-- | development/inform/inform.SlackBuild | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/development/inform/inform.SlackBuild b/development/inform/inform.SlackBuild new file mode 100644 index 000000000000..884f6d0596f9 --- /dev/null +++ b/development/inform/inform.SlackBuild @@ -0,0 +1,100 @@ +#!/bin/bash + +# Slackware build script for inform + +# Written by B. Watson (yalhcru@gmail.com) + +# Licensed under the WTFPL. See http://sam.zoy.org/wtfpl/ for details. + +PRGNAM=inform +VERSION=${VERSION:-6.32.1} +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" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --build=$ARCH-slackware-linux + +make +make install-strip DESTDIR=$PKG + +# Grr. Make this a relative link. Otherwise it points to /tmp/SBo +# after installation. +cd $PKG/usr/bin + rm -f $PRGNAM + ln -s $PRGNAM-* $PRGNAM +cd - + +# Move the manual to where Slack users expect it to be. +DOCDIR=$PKG/usr/doc/$PRGNAM-$VERSION +mkdir -p $DOCDIR +mv $PKG/usr/share/$PRGNAM/manual $DOCDIR/manual + +# Install the demo sources + tutorials, too. Very instructive for someone +# learning to use inform. +mkdir -p $DOCDIR/demos +cp demos/*.inf demos/README $DOCDIR/demos +mkdir -p $DOCDIR/tutorials +rm tutor/Make* +cp tutor/* $DOCDIR/tutorials + +# Inform Beginners' Guide, required reading. +cat $CWD/IBG.pdf > $DOCDIR/inform_beginners_guide.pdf + +cp -a ARTISTIC AUTHORS COPYING NEWS README docs/* $DOCDIR +cat $CWD/$PRGNAM.SlackBuild > $DOCDIR/$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} |