summaryrefslogtreecommitdiffstats
path: root/games/z26/z26.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'games/z26/z26.SlackBuild')
-rw-r--r--games/z26/z26.SlackBuild106
1 files changed, 0 insertions, 106 deletions
diff --git a/games/z26/z26.SlackBuild b/games/z26/z26.SlackBuild
deleted file mode 100644
index ea04d61fd1..0000000000
--- a/games/z26/z26.SlackBuild
+++ /dev/null
@@ -1,106 +0,0 @@
-#!/bin/bash
-
-# 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
-
-cd $(dirname $0) ; CWD=$(pwd)
-
-PRGNAM=z26
-VERSION=${VERSION:-2.13}
-BUILD=${BUILD:-2}
-TAG=${TAG:-_SBo}
-PKGTYPE=${PKGTYPE:-tgz}
-
-# 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
-
-# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
-# the name of the created package would be, and then exit. This information
-# could be useful to other scripts.
-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
- 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