summaryrefslogtreecommitdiffstats
path: root/multimedia
diff options
context:
space:
mode:
author David Somero2010-06-04 07:11:52 +0200
committer David Somero2010-06-04 07:11:52 +0200
commitcdee1f4280385690eb5bfa52f48f084e10104e13 (patch)
tree074feb507b223f0cea1f3eb291c7cca047a5fe2f /multimedia
parent1bb99f41f41f9c5d0e365e50a701c14d2634cc4e (diff)
downloadslackbuilds-cdee1f4280385690eb5bfa52f48f084e10104e13.tar.gz
multimedia/mscore: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/mscore/mscore.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/multimedia/mscore/mscore.SlackBuild b/multimedia/mscore/mscore.SlackBuild
index 16337a6bd3..e669c9515a 100644
--- a/multimedia/mscore/mscore.SlackBuild
+++ b/multimedia/mscore/mscore.SlackBuild
@@ -5,10 +5,19 @@
SRCNAM=MuseScore
PRGNAM=mscore
VERSION=${VERSION:-0.9.5}
-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
@@ -23,6 +32,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e