summaryrefslogtreecommitdiffstats
path: root/development/kforth/kforth.SlackBuild
blob: 3f09147be67fb974acefdd900f1eed3867c29825 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/bin/bash

# Slackware build script for kforth

# Written by G. Schoenmakers <gschoen@iinet.net.au>

# 20220318 bkw: Modified by SlackBuilds.org:
# - fix build on 15.0.
# - use SLKCFLAGS.
# - strip the binaries.
# - check ARCH and exit if unsupported.

cd $(dirname $0) ; CWD=$(pwd)

PRGNAM=kforth
VERSION=${VERSION:-1.5.2p1}
SRCVER="$( echo $VERSION | cut -dp -f1 )"
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}

MODEL=${MODEL:-x86-linux}

if [ -z "$ARCH" ]; then
  case "$( uname -m )" in
    i?86) ARCH=i586 ;;
    arm*) ARCH=arm ;;
       *) ARCH=$( uname -m ) ;;
  esac
fi

if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
  echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
  exit 0
fi

TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}

if [ "$ARCH" = "i586" ]; then
  SLKCFLAGS="-O2 -march=i586 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
  SLKCFLAGS="-O2 -march=i686 -mtune=i686"
else
  SLKCFLAGS="-O2"
fi

case "$ARCH" in
  i?86) ;; # OK
  *) echo "Unsupported ARCH '$ARCH'"; exit 1 ;;
esac

set -e

rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$SRCVER
tar xvf $CWD/$PRGNAM-$MODEL-$SRCVER.tar.gz
cd $PRGNAM-$SRCVER
chown -R root:root .
find -L . \
 \( -perm 777 -o -perm 775 -o -perm 750 -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

# 20220318 bkw: pow10() is deprecated, according to its man
# page. and apparently it's also a macro, since taking its address
# fails. exp10() performs exactly the same, and is a real function...
sed -i 's,\<pow10\>,exp10,g' vmc.c

# 20220318 bkw: sneak our CFLAGS in...
make CC="gcc $SLKCFLAGS" CPP="g++ $SLKCFLAGS"

# 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
install -s -m0755 $PRGNAM $PRGNAM-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