diff options
author | B. Watson <yalhcru@gmail.com> | 2017-09-08 00:19:33 +0100 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-09-08 00:19:33 +0100 |
commit | 8c0ffd397b35cadfca32308acb17fb137e307f10 (patch) | |
tree | 0e5d6c99336dd5c46d74c9d98c289f65fc22fef0 /development/rmac/rmac.SlackBuild | |
parent | b5365b1f400b9e17b1281b9f885543abe1477894 (diff) |
development/rmac: Added (cross assembler for 6502 and 68000).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'development/rmac/rmac.SlackBuild')
-rw-r--r-- | development/rmac/rmac.SlackBuild | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/development/rmac/rmac.SlackBuild b/development/rmac/rmac.SlackBuild new file mode 100644 index 000000000000..883d83b114cd --- /dev/null +++ b/development/rmac/rmac.SlackBuild @@ -0,0 +1,96 @@ +#!/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} |