summaryrefslogtreecommitdiffstats
path: root/desktop/dzen2
diff options
context:
space:
mode:
author David Somero2010-06-04 07:01:00 +0200
committer David Somero2010-06-04 07:01:00 +0200
commit9477916ada982824268c854a1a3ce7e9de706d93 (patch)
tree110eed6d051fa88f0c06fbb6b382e0184889606a /desktop/dzen2
parent81cc060807068ecd74111e14771d99a912cccd4a (diff)
downloadslackbuilds-9477916ada982824268c854a1a3ce7e9de706d93.tar.gz
desktop/dzen2: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/dzen2')
-rw-r--r--desktop/dzen2/dzen2.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/desktop/dzen2/dzen2.SlackBuild b/desktop/dzen2/dzen2.SlackBuild
index 723c278820..9dcf68c4ca 100644
--- a/desktop/dzen2/dzen2.SlackBuild
+++ b/desktop/dzen2/dzen2.SlackBuild
@@ -8,10 +8,19 @@
PRGNAM=dzen2
VERSION=${VERSION:-0.8.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
@@ -26,6 +35,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e