games/tuxnes: Allow VERSION override, i486=>i586.

Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
B. Watson 2017-03-20 22:27:14 -04:00 committed by David Spencer
parent bda23814df
commit a8fcf8037f

View file

@ -5,13 +5,13 @@
# Updated slightly by B. Watson <yalhcru@gmail.com>, with permission
PRGNAM=tuxnes
VERSION=0.75
VERSION=${VERSION:-0.75}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@ -22,8 +22,8 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
else
@ -31,7 +31,7 @@ else
$PRGNAM is partly written in x86 assembly language, therefore cannot
be built on the current architecture of "$ARCH".
Supported ARCH settings are "i486" and "i686".
Supported ARCH settings are "i586" and "i686".
EOF
exit 1
fi