summaryrefslogtreecommitdiffstats
path: root/office/tth/tth.SlackBuild
blob: 50bb1b194a36395ab1b734d3662dc46ec3a997fb (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
#!/bin/sh

# Slackware build script for tth
# Written by Peter Drauden (pjdraud@ilstu.edu)
# Modified by the SlackBuilds.org project
# (assumed to be public domain per our submission policy)

# Exit on most errors
set -e

PRGNAM=tth
VERSION=3.77
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}

SRCDIR=tth_C

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

rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $SRCDIR
tar -xzvf $CWD/tth_C.tgz
cd $SRCDIR
chown -R root:root .
chmod -R u+w,go+r-w,a-s .

# Compile and strip unneeded symbols from the binary
gcc $SLKCFLAGS -o tth tth.c
strip --strip-unneeded tth 2> /dev/null

mkdir -p $PKG/usr/{bin,man/man1,share/pixmaps}
cp -a tth ps2gif ps2png latex2gif $PKG/usr/bin/
cp -a tth.gif $PKG/usr/share/pixmaps

# Install and compress man page
cat tth.1 | gzip -9c > $PKG/usr/man/man1/tth.1.gz

mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a CHANGES tth_manual.html license.txt $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.tgz