diff options
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 |
commit | a8fcf8037fe1b909fcfe6088ff7821de301a7010 (patch) | |
tree | 8f2b2cc1ec41b990a203be306ff9f8cf8a3f108f /games/tuxnes | |
parent | bda23814df5edd8b1b95df4ffc07d8aed0379e95 (diff) | |
download | slackbuilds-a8fcf8037fe1b909fcfe6088ff7821de301a7010.tar.gz |
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/tuxnes')
-rw-r--r-- | games/tuxnes/tuxnes.SlackBuild | 10 |
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 |