diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:11:52 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:11:52 -0400 |
commit | cdee1f4280385690eb5bfa52f48f084e10104e13 (patch) | |
tree | 074feb507b223f0cea1f3eb291c7cca047a5fe2f /multimedia/mscore/mscore.SlackBuild | |
parent | 1bb99f41f41f9c5d0e365e50a701c14d2634cc4e (diff) | |
download | slackbuilds-cdee1f4280385690eb5bfa52f48f084e10104e13.tar.gz |
multimedia/mscore: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'multimedia/mscore/mscore.SlackBuild')
-rw-r--r-- | multimedia/mscore/mscore.SlackBuild | 14 |
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 |