summaryrefslogtreecommitdiffstats
path: root/desktop/musca
diff options
context:
space:
mode:
author David Somero2010-06-04 07:01:16 +0200
committer David Somero2010-06-04 07:01:16 +0200
commit16f3aba2748c4d91ccd86dc4e68a52601e04e7de (patch)
tree729dcbcdb0fcecac436fec090640a9ce37a636a9 /desktop/musca
parenta33019db005338be10b84474af3259dad3f93400 (diff)
downloadslackbuilds-16f3aba2748c4d91ccd86dc4e68a52601e04e7de.tar.gz
desktop/musca: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/musca')
-rw-r--r--desktop/musca/musca.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/desktop/musca/musca.SlackBuild b/desktop/musca/musca.SlackBuild
index 980f7d24af..da3c36f192 100644
--- a/desktop/musca/musca.SlackBuild
+++ b/desktop/musca/musca.SlackBuild
@@ -32,10 +32,19 @@
PRGNAM=musca
VERSION=${VERSION:-0.9.24}
-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
@@ -51,6 +60,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e