diff options
author | B. Watson <yalhcru@gmail.com> | 2019-12-21 10:46:30 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-12-21 10:46:30 +0700 |
commit | c01110e44e276cc598da1977168ddb1df104fa33 (patch) | |
tree | f24c6b7ab1039c65a057509f4fa2df058eafbf0f /development/frobtads/frobtads.SlackBuild | |
parent | 4ee57dc84bc8fa8eb976fcc2bf9d0fc9ecd83a0f (diff) |
development/frobtads: Added (Interactive compiler and interpreter).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/frobtads/frobtads.SlackBuild')
-rw-r--r-- | development/frobtads/frobtads.SlackBuild | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/development/frobtads/frobtads.SlackBuild b/development/frobtads/frobtads.SlackBuild new file mode 100644 index 000000000000..d4066290cf4b --- /dev/null +++ b/development/frobtads/frobtads.SlackBuild @@ -0,0 +1,90 @@ +#!/bin/sh + +# Slackware build script for frobtads + +# Written by B. Watson (yalhcru@gmail.com) + +# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. + +# Note: the homepage shows 1.2.3 as the latest release, but the github +# page has 1.2.4, which includes the resource compiler (which seems +# pretty important). + +# TODO: maybe write some man pages. + +PRGNAM=frobtads +VERSION=${VERSION:-1.2.4} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -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.bz2 +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ + \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ + +# I thought to use --enable-t3debug, but that turns out to be for +# debugging the tads3 compiler itself, not the tads code it's compiling. +# Not useful to anyone but upstream... --enable-frobd might be of use +# to someone, though it requires an external debugger (not included here). +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --enable-frobd \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --build=$ARCH-slackware-linux + +make V=1 +make install-strip DESTDIR=$PKG + +DOCDIR=$PKG/usr/doc/$PRGNAM-$VERSION +mkdir -p $DOCDIR +# don't need these in the pkg: +rm -f doc/INSTALL doc/MacOSX +cp -a doc/* $DOCDIR +ln -s ../../share/$PRGNAM/tads3/doc $DOCDIR/tads3_doc +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} |