diff options
author | Hunter Sezen <orbea@fredslev.dk> | 2018-11-04 20:50:59 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-11-10 07:46:46 +0700 |
commit | 3d8b6152bbc16ee6a79ba7994cc26d5321b70bbb (patch) | |
tree | 03837b9c2aa3b9f2bc7dc32d490ac504dbc1ca33 /games/bsnes-mercury/bsnes-mercury.SlackBuild | |
parent | a72d548d10c363c37a9e2597a78f897dc03b1484 (diff) |
games/bsnes-mercury: Updated for version 2018.08.03_4e221df.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'games/bsnes-mercury/bsnes-mercury.SlackBuild')
-rw-r--r-- | games/bsnes-mercury/bsnes-mercury.SlackBuild | 21 |
1 files changed, 4 insertions, 17 deletions
diff --git a/games/bsnes-mercury/bsnes-mercury.SlackBuild b/games/bsnes-mercury/bsnes-mercury.SlackBuild index c89fc39da835..88a963f8ca9a 100644 --- a/games/bsnes-mercury/bsnes-mercury.SlackBuild +++ b/games/bsnes-mercury/bsnes-mercury.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for bsnes-mercury -# Copyright 2016-2017 Hunter Sezen +# Copyright 2016-2018 Hunter Sezen # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,7 +24,7 @@ PRGNAM=bsnes-mercury LIBNAM=$(echo $PRGNAM | tr - _) -VERSION=${VERSION:-2017.12.05_559b513} +VERSION=${VERSION:-2018.08.03_4e221df} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -41,21 +41,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -# requires patching the Makefile to properly use -# the default CFLAGS and CXXFLAGS are probably fine -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 +LIBDIRSUFFIX= +[ "$ARCH" = x86_64 ] && LIBDIRSUFFIX=64 set -eu |