diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:30 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:30 -0400 |
commit | 08544e809196f30a9aa55eba915b89bf4423807e (patch) | |
tree | bf63934a4d61319405bf4ff9c74bcb347a1c0598 /system/dosbox | |
parent | 695518e287b5d44952888e7fff1c97a1b5ae71e9 (diff) | |
download | slackbuilds-08544e809196f30a9aa55eba915b89bf4423807e.tar.gz |
system/dosbox: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/dosbox')
-rw-r--r-- | system/dosbox/dosbox.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/system/dosbox/dosbox.SlackBuild b/system/dosbox/dosbox.SlackBuild index 17eae99642..9d58c99982 100644 --- a/system/dosbox/dosbox.SlackBuild +++ b/system/dosbox/dosbox.SlackBuild @@ -25,10 +25,19 @@ PRGNAM=dosbox VERSION=${VERSION:-0.73} -ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} +# Automatically determine the architecture we're building on: +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + # Unless $ARCH is already set, use uname -m for all other archs: + *) ARCH=$( uname -m ) ;; + esac +fi + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM @@ -43,6 +52,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |