mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-06 08:26:50 +01:00
217af619ca
Signed-off-by: B. Watson <yalhcru@gmail.com>
96 lines
2.5 KiB
Bash
96 lines
2.5 KiB
Bash
#!/bin/sh
|
|
|
|
# Slackware build script for z26
|
|
|
|
# Written by B. Watson (yalhcru@gmail.com)
|
|
# Modified by SlackBuilds.org
|
|
|
|
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
|
|
|
# 20180123 bkw:
|
|
# - move binary to /usr/games, man page to section 6
|
|
# - 64-bit support via statified binary (see statify.sh)
|
|
# - BUILD=2
|
|
|
|
PRGNAM=z26
|
|
VERSION=${VERSION:-2.13}
|
|
BUILD=${BUILD:-2}
|
|
TAG=${TAG:-_SBo}
|
|
|
|
# The distribution tarball is actually a snapshot that got
|
|
# "promoted" to being the 2.13 release, but never got repacked,
|
|
# so the top-level directory is z26_snapshot-$date
|
|
# (nevertheless, this is the official 2.13 source release, or as close
|
|
# as we're going to get)
|
|
SNAPVER=${SNAPVER:-${PRGNAM}_snapshot-20040523}
|
|
TARBALL=${TARBALL:-${PRGNAM}v213.tar.gz}
|
|
|
|
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"
|
|
elif [ "$ARCH" = "i686" ]; then
|
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
echo "=== $ARCH detected, using statified binary"
|
|
else
|
|
echo "Can't build on $ARCH, sorry"
|
|
exit 1
|
|
fi
|
|
|
|
set -e
|
|
|
|
rm -rf $PKG
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
cd $TMP
|
|
rm -rf $SNAPVER
|
|
tar xvf $CWD/$TARBALL
|
|
cd $SNAPVER
|
|
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 640 -o -perm 600 -o -perm 444 \
|
|
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
|
|
|
# man page belongs in section 6
|
|
sed -i '/pod2man -c/s,-c,-s6 -c,' Makefile
|
|
|
|
if [ "$ARCH" = "x86_64" ]; then
|
|
xz -d < $CWD/$PRGNAM.static.xz > $PRGNAM
|
|
chmod 755 $PRGNAM
|
|
cp conf/config_linux-static.mak config.mak
|
|
else
|
|
make linux CFLAGS="$SLKCFLAGS"
|
|
fi
|
|
make $PRGNAM.man
|
|
make docs
|
|
|
|
mkdir -p $PKG/usr/games $PKG/usr/man/man6
|
|
install -m0755 -o root -g root $PRGNAM $PKG/usr/games
|
|
gzip -9c $PRGNAM.man > $PKG/usr/man/man6/$PRGNAM.6.gz
|
|
|
|
rm -rf doc/CVS
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
|
cp doc/* *.txt *.TXT $PKG/usr/doc/$PRGNAM-$VERSION
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
mkdir -p $PKG/usr/share/pixmaps
|
|
cp ${PRGNAM}_icon.png $PKG/usr/share/pixmaps/$PRGNAM.png
|
|
|
|
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}
|