summaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
author B. Watson <yalhcru@gmail.com>2017-03-20 22:27:14 -0400
committer David Spencer <idlemoor@slackbuilds.org>2017-03-25 13:27:45 +0000
commita8fcf8037fe1b909fcfe6088ff7821de301a7010 (patch)
tree8f2b2cc1ec41b990a203be306ff9f8cf8a3f108f /games
parentbda23814df5edd8b1b95df4ffc07d8aed0379e95 (diff)
downloadslackbuilds-a8fcf8037fe1b909fcfe6088ff7821de301a7010.tar.gz
slackbuilds-a8fcf8037fe1b909fcfe6088ff7821de301a7010.tar.xz
games/tuxnes: Allow VERSION override, i486=>i586.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r--games/tuxnes/tuxnes.SlackBuild10
1 files changed, 5 insertions, 5 deletions
diff --git a/games/tuxnes/tuxnes.SlackBuild b/games/tuxnes/tuxnes.SlackBuild
index 54f58f8137..e63696ade3 100644
--- a/games/tuxnes/tuxnes.SlackBuild
+++ b/games/tuxnes/tuxnes.SlackBuild
@@ -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