2021-07-04 01:48:15 +08:00
|
|
|
#!/bin/bash
|
2010-05-12 02:00:33 +08:00
|
|
|
|
2010-05-12 23:39:22 +08:00
|
|
|
# Slackware build script for Micropolis
|
2010-05-12 02:00:33 +08:00
|
|
|
|
2010-04-20 12:19:16 +08:00
|
|
|
# Now maintained by B. Watson <yalhcru@gmail.com>, please don't bother
|
|
|
|
# Chess with questions about this build (bother me instead)
|
|
|
|
|
2021-10-23 02:15:10 +08:00
|
|
|
# Copyright 2008-2009 Chess Griffin <email removed>
|
2010-05-12 23:39:22 +08:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use of this script, with or without modification, is
|
|
|
|
# permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of this script must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
|
|
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
|
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2010-05-12 02:00:33 +08:00
|
|
|
|
2021-10-23 02:15:10 +08:00
|
|
|
# 20211022 bkw: BUILD=4, new-style icons.
|
|
|
|
|
2021-07-04 17:41:06 +08:00
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
|
2010-05-12 23:39:22 +08:00
|
|
|
PRGNAM=micropolis
|
2014-11-14 02:45:48 +08:00
|
|
|
VERSION=${VERSION:-20100418}
|
2021-10-23 02:15:10 +08:00
|
|
|
BUILD=${BUILD:-4}
|
2010-05-12 23:39:22 +08:00
|
|
|
TAG=${TAG:-_SBo}
|
2021-07-04 18:23:38 +08:00
|
|
|
PKGTYPE=${PKGTYPE:-tgz}
|
2010-05-12 02:00:33 +08:00
|
|
|
|
2010-06-04 13:04:32 +08:00
|
|
|
if [ -z "$ARCH" ]; then
|
|
|
|
case "$( uname -m )" in
|
2016-08-19 16:59:48 +08:00
|
|
|
i?86) ARCH=i586 ;;
|
2010-06-04 13:04:32 +08:00
|
|
|
arm*) ARCH=arm ;;
|
|
|
|
*) ARCH=$( uname -m ) ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2021-07-04 18:23:38 +08:00
|
|
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
|
|
|
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2010-05-12 23:39:22 +08:00
|
|
|
TMP=${TMP:-/tmp/SBo}
|
2010-05-12 02:00:33 +08:00
|
|
|
PKG=$TMP/package-$PRGNAM
|
2010-05-12 23:39:22 +08:00
|
|
|
OUTPUT=${OUTPUT:-/tmp}
|
2010-05-12 02:00:33 +08:00
|
|
|
|
|
|
|
DOCS="COPYING README"
|
2021-10-23 02:15:10 +08:00
|
|
|
DOCDIR=/usr/doc/$PRGNAM-$VERSION
|
|
|
|
PKGDOC=$PKG/$DOCDIR
|
2010-05-12 02:00:33 +08:00
|
|
|
|
2016-08-19 16:59:48 +08:00
|
|
|
if [ "$ARCH" = "i586" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
2010-05-12 23:39:22 +08:00
|
|
|
LIBDIRSUFFIX=""
|
2010-05-12 02:00:33 +08:00
|
|
|
elif [ "$ARCH" = "i686" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
2010-05-12 23:39:22 +08:00
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
|
|
SLKCFLAGS="-O2 -fPIC"
|
|
|
|
LIBDIRSUFFIX="64"
|
2010-05-12 02:00:33 +08:00
|
|
|
fi
|
|
|
|
|
2010-04-20 12:19:16 +08:00
|
|
|
set -e
|
2010-05-12 02:00:33 +08:00
|
|
|
|
|
|
|
rm -rf $PKG
|
|
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
|
|
cd $TMP
|
2010-04-20 12:19:16 +08:00
|
|
|
rm -rf $PRGNAM
|
2010-05-12 02:00:33 +08:00
|
|
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
|
|
|
cd $PRGNAM
|
|
|
|
chown -R root:root .
|
2021-10-23 02:15:10 +08:00
|
|
|
find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
|
|
|
|
\! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+
|
2010-05-12 02:00:33 +08:00
|
|
|
|
2010-04-20 12:19:16 +08:00
|
|
|
# Force our CFLAGS
|
|
|
|
find . -iname \*makefile\* -o -iname \*.mk \
|
|
|
|
| xargs sed -i -e '/FLAG/s/-O[^ ]*/$(SLKCFLAGS) /'
|
|
|
|
|
2010-05-12 02:00:33 +08:00
|
|
|
# comment out the next line to disable the airplane crash disaster
|
|
|
|
sed -i -e 's/-DNO_AIRCRASH//' src/sim/makefile
|
|
|
|
|
2021-10-23 02:15:10 +08:00
|
|
|
run_make() {
|
|
|
|
make -j1 \
|
|
|
|
PREFIX=/usr \
|
|
|
|
DOCDIR=$DOCDIR \
|
|
|
|
DATADIR=/usr/share/games/$PRGNAM \
|
|
|
|
BINDIR=/usr/games \
|
|
|
|
SLKCFLAGS="$SLKCFLAGS -DTCL_IEEE_FP_MATH" \
|
|
|
|
DESTDIR=$PKG \
|
|
|
|
"$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
# 20211022 bkw: Makefile already strips the one binary (sim).
|
|
|
|
run_make
|
|
|
|
run_make install
|
|
|
|
|
|
|
|
# 20211022 bkw: Upstream's icon is an oddball size: 58x67. This icon
|
|
|
|
# was made by cropping the bottom 3 lines from the original, making
|
|
|
|
# the grey background color transparent, and centering it in a 64x64
|
|
|
|
# canvas.
|
|
|
|
for px in 16 32 48 64; do
|
|
|
|
size=${px}x${px}
|
|
|
|
dir=$PKG/usr/share/icons/hicolor/$size/apps
|
|
|
|
mkdir -p $dir
|
|
|
|
convert -resize $size $CWD/$PRGNAM.png $dir/$PRGNAM.png
|
|
|
|
done
|
|
|
|
|
|
|
|
rm $PKG/usr/share/pixmaps/*
|
|
|
|
ln -s ../icons/hicolor/48x48/apps/$PRGNAM.png $PKG/usr/share/pixmaps/$PRGNAM.png
|
2010-05-12 02:00:33 +08:00
|
|
|
|
2010-04-20 12:19:16 +08:00
|
|
|
# Make .desktop file pass desktop-file-validate
|
2021-10-23 02:15:10 +08:00
|
|
|
sed -i -e '/^Encoding/d' \
|
|
|
|
-e 's/\.png$//' \
|
|
|
|
-e '/^Exec=/s,=,=/usr/games/,' \
|
|
|
|
$PKG/usr/share/applications/$PRGNAM.desktop
|
|
|
|
|
|
|
|
mkdir -p $PKGDOC
|
|
|
|
cp -a $DOCS $PKGDOC
|
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKGDOC/$PRGNAM.SlackBuild
|
2010-05-12 02:00:33 +08:00
|
|
|
|
|
|
|
mkdir -p $PKG/install
|
|
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
|
|
|
|
|
|
|
cd $PKG
|
2021-07-04 18:23:38 +08:00
|
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|