mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-14 21:56:41 +01:00
8c0ffd397b
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
96 lines
2.5 KiB
Bash
96 lines
2.5 KiB
Bash
#!/bin/sh
|
|
|
|
# Slackware build script for rmac
|
|
|
|
# Written by B. Watson (yalhcru@gmail.com)
|
|
|
|
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
|
|
|
# Upstream doesn't do source release tarballs, see git2targz.sh.
|
|
|
|
PRGNAM=rmac
|
|
VERSION=${VERSION:-1.8.6_20170829}
|
|
BUILD=${BUILD:-1}
|
|
TAG=${TAG:-_SBo}
|
|
|
|
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"
|
|
LIBDIRSUFFIX=""
|
|
elif [ "$ARCH" = "i686" ]; then
|
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
|
LIBDIRSUFFIX=""
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
SLKCFLAGS="-O2 -fPIC"
|
|
LIBDIRSUFFIX="64"
|
|
else
|
|
SLKCFLAGS="-O2"
|
|
LIBDIRSUFFIX=""
|
|
fi
|
|
|
|
set -e
|
|
|
|
rm -rf $PKG
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
cd $TMP
|
|
rm -rf $PRGNAM-$VERSION
|
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.xz
|
|
cd $PRGNAM-$VERSION
|
|
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 {} \;
|
|
|
|
sed -i "s,-O2,$SLKCFLAGS," makefile
|
|
make
|
|
|
|
# Manual install.
|
|
mkdir -p $PKG/usr/bin $PKG/usr/share/$PRGNAM
|
|
install -s -m0755 $PRGNAM $PKG/usr/bin
|
|
|
|
# The README talks about a 'distribution disk' and mentions some files
|
|
# that should be on it. This is a holdover from madmac, as rmac has
|
|
# no distribution disk... but let's include the files here anyway.
|
|
# These were taken from:
|
|
# https://github.com/OpenSourcedGames/Atari-7800/tree/master/7800DEVSYS/7800DEVSYS/MADMAC/EXAMPLES
|
|
# ...and converted to *nix \n line endings.
|
|
tar xvf $CWD/madmac-examples.tar.xz
|
|
cd madmac-examples
|
|
chown root.root *
|
|
chmod 644 *
|
|
mkdir -p $PKG/usr/share/$PRGNAM/examples
|
|
mv * $PKG/usr/share/$PRGNAM/examples
|
|
ln -s examples/atari.s $PKG/usr/share/$PRGNAM/atari.s
|
|
cd -
|
|
|
|
# man page written for this SlackBuild, basically a cut-down version
|
|
# of docs/rman.rst.
|
|
mkdir -p $PKG/usr/man/man1
|
|
gzip -9c < $CWD/$PRGNAM.1 > $PKG/usr/man/man1/$PRGNAM.1.gz
|
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
|
ln -s ../../share/$PRGNAM/examples $PKG/usr/doc/$PRGNAM-$VERSION/examples
|
|
cp -a docs/* $PKG/usr/doc/$PRGNAM-$VERSION
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
mkdir -p $PKG/install
|
|
sed "s,@gitrev@,$( cat $PRGNAM.gitrev )," \
|
|
$CWD/slack-desc \
|
|
> $PKG/install/slack-desc
|
|
|
|
cd $PKG
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|