diff options
Diffstat (limited to 'games/hatari_tos_roms/hatari_tos_roms.SlackBuild')
-rw-r--r-- | games/hatari_tos_roms/hatari_tos_roms.SlackBuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/games/hatari_tos_roms/hatari_tos_roms.SlackBuild b/games/hatari_tos_roms/hatari_tos_roms.SlackBuild new file mode 100644 index 0000000000..69652f2aca --- /dev/null +++ b/games/hatari_tos_roms/hatari_tos_roms.SlackBuild @@ -0,0 +1,54 @@ +#!/bin/sh + +# Slackware build script for hatari_tos_roms +# Written by B. Watson (yalhcru@gmail.com) + +# The version number is just the date when the script was written. +# The actual TOS ROM versions are 1.02-uk, 2.06-uk, and optionally +# 1.02-us and 2.06-us. + +# the US ROMs are optional. They come from +# http://steem.atari.st/tos_us.zip +# (md5sum bf250988783a0d468711a1057215fd73) +# If they're present, they get included in the package, and the +# slack-desc gets modified to say so. + +PRGNAM=hatari_tos_roms +VERSION=${VERSION-20090122} +ARCH=noarch +BUILD=${BUILD-1} +TAG=${TAG-_SBo} + +CWD=$(pwd) +TMP=${TMP-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e + +rm -rf $PKG +mkdir -p $PKG/usr/share/hatari $PKG/install + +cd $PKG/usr/share/hatari +unzip $CWD/tos_uk.zip + +mv Tos206.img tos-2.06-uk.img +mv Tos102.img tos-1.02-uk.img + +US="$PRGNAM: This package includes only the UK ROM images." +if [ -f $CWD/tos_us.zip ]; then + unzip $CWD/tos_us.zip + mv Tos206us.img tos-2.06-us.img + mv Tos102us.img tos-1.02-us.img + US="$PRGNAM: This package includes both the US and UK ROM images." +fi + +# hatari uses this image by default. +# 1.02 is better for games... +ln -s tos-1.02-uk.img tos.img + +cat $CWD/slack-desc >$PKG/install/slack-desc +echo "$US" >> $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz |