summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
author David Somero2010-06-04 07:00:19 +0200
committer David Somero2010-06-04 07:00:19 +0200
commit368ed3357d5b2aca3d549350ff6871a57f923e11 (patch)
treeb0e95f2e81e211830fc82b9698bd5b52cc1bcb5e /audio
parentda4a65712c300022ca591cda170477958765930a (diff)
downloadslackbuilds-368ed3357d5b2aca3d549350ff6871a57f923e11.tar.gz
audio/mpc: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'audio')
-rw-r--r--audio/mpc/mpc.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/audio/mpc/mpc.SlackBuild b/audio/mpc/mpc.SlackBuild
index 49c08f046f..0e5ee138fb 100644
--- a/audio/mpc/mpc.SlackBuild
+++ b/audio/mpc/mpc.SlackBuild
@@ -6,10 +6,19 @@
PRGNAM=mpc
VERSION=0.12.1
-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
@@ -28,6 +37,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e