summaryrefslogtreecommitdiffstats
path: root/audio/mpdscribble/mpdscribble.SlackBuild
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:00:21 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:00:21 -0400
commita701d0f6c6f9705a63c5d5e6dd2a5d6c19410269 (patch)
treea0782309f877c775fa3b9a8a278aeca0cc810359 /audio/mpdscribble/mpdscribble.SlackBuild
parent4efded419b531b85bf8a96b02438ff65b0aba81a (diff)
downloadslackbuilds-a701d0f6c6f9705a63c5d5e6dd2a5d6c19410269.tar.gz
slackbuilds-a701d0f6c6f9705a63c5d5e6dd2a5d6c19410269.tar.xz
audio/mpdscribble: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'audio/mpdscribble/mpdscribble.SlackBuild')
-rw-r--r--audio/mpdscribble/mpdscribble.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/audio/mpdscribble/mpdscribble.SlackBuild b/audio/mpdscribble/mpdscribble.SlackBuild
index a62c539775..a766a84f6c 100644
--- a/audio/mpdscribble/mpdscribble.SlackBuild
+++ b/audio/mpdscribble/mpdscribble.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=mpdscribble
VERSION=0.19
-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
@@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -eu