From d34c34353b70a31ab7756d48a4e9fad87eb5d56c Mon Sep 17 00:00:00 2001 From: "G. Schoenmakers" Date: Sat, 23 Feb 2013 23:00:15 -0600 Subject: development/kforth: Added (A Forth programming language and environment) Signed-off-by: Robby Workman --- development/kforth/kforth.SlackBuild | 66 ++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 development/kforth/kforth.SlackBuild (limited to 'development/kforth/kforth.SlackBuild') diff --git a/development/kforth/kforth.SlackBuild b/development/kforth/kforth.SlackBuild new file mode 100644 index 0000000000..e601b9549c --- /dev/null +++ b/development/kforth/kforth.SlackBuild @@ -0,0 +1,66 @@ +#!/bin/sh + +# Slackware build script for kforth + +# Written by G. Schoenmakers + +PRGNAM=kforth +VERSION=${VERSION:-1.5.2} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +MODEL=${MODEL:-x86-linux} + +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} + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$MODEL-$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 {} \; + +patch ForthVM.cpp $CWD/ForthVM.diff +patch Makefile $CWD/Makefile.diff +VERSION=${VERSION}p1 + +make + +# There is no "make install" so the following instructions are used to copy +# the relevant files into the $PKG directory. + +mkdir -p $PKG/usr/bin +cp -a kforth $PKG/usr/bin +cp -a kforth-fast $PKG/usr/bin + +mkdir -p $PKG/usr/share/pixmaps +cp -a kforth.xpm $PKG/usr/share/pixmaps + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a ChangeLog README examples $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} -- cgit v1.2.3