summaryrefslogtreecommitdiffstats
path: root/desktop/wmmixer
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:01:49 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:01:49 -0400
commitd6897d38e38a2a8094f5e19866fd8c14557e69fb (patch)
treec51d5c1ada4096cec8f2e05d3df222abbfb09693 /desktop/wmmixer
parent32a906e63d61d19b6acc6d1c69349bee6d47f7fe (diff)
downloadslackbuilds-d6897d38e38a2a8094f5e19866fd8c14557e69fb.tar.gz
slackbuilds-d6897d38e38a2a8094f5e19866fd8c14557e69fb.tar.xz
desktop/wmmixer: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/wmmixer')
-rw-r--r--desktop/wmmixer/wmmixer.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/desktop/wmmixer/wmmixer.SlackBuild b/desktop/wmmixer/wmmixer.SlackBuild
index df93edcc87..d50d3f25cf 100644
--- a/desktop/wmmixer/wmmixer.SlackBuild
+++ b/desktop/wmmixer/wmmixer.SlackBuild
@@ -7,10 +7,19 @@
PRGNAM=wmmixer
VERSION=${VERSION:-1.5}
-ARCH=${ARCH:-i486}
BUILD=${BUILD:-2}
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
@@ -25,6 +34,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e