summaryrefslogtreecommitdiffstats
path: root/desktop/wmfire
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:01:48 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:01:48 -0400
commit6f4f87b16a1e8e81f19c55048cbda6a114a2d5c4 (patch)
treeee6cb9aed2c525543da5c37f0a1337fb745b423a /desktop/wmfire
parent124956bedc2105b9fa4dd7019a67ea7f2ec3f09c (diff)
downloadslackbuilds-6f4f87b16a1e8e81f19c55048cbda6a114a2d5c4.tar.gz
slackbuilds-6f4f87b16a1e8e81f19c55048cbda6a114a2d5c4.tar.xz
desktop/wmfire: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/wmfire')
-rw-r--r--desktop/wmfire/wmfire.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/desktop/wmfire/wmfire.SlackBuild b/desktop/wmfire/wmfire.SlackBuild
index 8f96f067be..74d33e0492 100644
--- a/desktop/wmfire/wmfire.SlackBuild
+++ b/desktop/wmfire/wmfire.SlackBuild
@@ -8,10 +8,19 @@
PRGNAM=wmfire
VERSION=${VERSION:-1.2.3}
-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