summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author David Somero2010-06-04 07:16:47 +0200
committer David Somero2010-06-04 07:16:47 +0200
commite1462e34942cd9d0d9fe77e72579202e569eb232 (patch)
tree5312b38b1e47fa69d45cd5be5f1405a172df3739 /system
parente2406de7add86defe65dd178153c5daf04dac51e (diff)
downloadslackbuilds-e1462e34942cd9d0d9fe77e72579202e569eb232.tar.gz
system/spambayes: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r--system/spambayes/spambayes.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/system/spambayes/spambayes.SlackBuild b/system/spambayes/spambayes.SlackBuild
index cf29d9f248..46bfa318ee 100644
--- a/system/spambayes/spambayes.SlackBuild
+++ b/system/spambayes/spambayes.SlackBuild
@@ -5,10 +5,19 @@
PRGNAM=spambayes
VERSION=${VERSION:-1.0.4}
-ARCH=${ARCH:-i486}
BUILD=${BUILD:-3}
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