blob: f41e6ff2cbc6d36f7a0099456c06c72d2a3fc69c (
plain) (
tree)
|
|
#!/bin/bash
# Slackware build script for an
# Written by B. Watson (urchlay@slackware.uk)
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
# 20230707 bkw: For some reason, the Debian source switched from .xz
# to .gz compressions. Contents of the archive are identical, not
# bumping BUILD.
# 20160804 bkw: Updated to 1.2. Apparently 1.2 is a release by the
# maintainer(s) of the Debian an package, not the original author...
# but the old 0.95 was segfaulting when built with gcc5. Also, the
# new version has Unicode support.
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=an
VERSION=${VERSION:-1.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
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"
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
else
SLKCFLAGS="-O2"
fi
set -e
TARVER=$( echo $VERSION | sed 's/_/-/g' )
SRCVER=$( echo $VERSION | sed 's/_.*//' )
# Optional GUI frontend (requires perl-tk):
GUI_IN=anaffront.pl
GUI_OUT=anaffront
rm -rf $PKG
mkdir -p $TMP $PKG/usr/{games,man/man6} $OUTPUT
cd $TMP
rm -rf ${PRGNAM}-${SRCVER}
tar xvf $CWD/${PRGNAM}_$TARVER.orig.tar.gz
cd ${PRGNAM}-$SRCVER
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 {} \+
make MANDIR=/usr/man/man6 CC="gcc $SLKCFLAGS"
make install DESTDIR=$PKG MANDIR=$PKG/usr/man/man6
strip $PKG/usr/games/$PRGNAM
gzip -9 $PKG/usr/man/man6/$PRGNAM.6
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp ALGORITHM COPYING $PKG/usr/doc/$PRGNAM-$VERSION
chmod 644 $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
# Add the GUI frontend to the package, if the user has it:
if [ -e $CWD/$GUI_IN ]; then
sed 's,/net/noarch/share/dict/anagram,/usr/share/dict/words,' \
< $CWD/$GUI_IN \
> $PKG/usr/games/$GUI_OUT
chmod 755 $PKG/usr/games/$GUI_OUT
mkdir -p $PKG/usr/share/applications $PKG/usr/share/pixmaps
cp $CWD/$GUI_OUT.desktop $PKG/usr/share/applications
# TODO: Anyone want to design a real icon? IANAGD...
cp $CWD/$GUI_OUT.png $PKG/usr/share/pixmaps
cat $CWD/doinst.sh > $PKG/install/doinst.sh
sed -i \
'15s/$/ This packages includes the anaffront GUI frontend (requires perl-tk)/' \
$PKG/install/slack-desc
fi
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|