diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:47 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:47 -0400 |
commit | e1462e34942cd9d0d9fe77e72579202e569eb232 (patch) | |
tree | 5312b38b1e47fa69d45cd5be5f1405a172df3739 /system/spambayes/spambayes.SlackBuild | |
parent | e2406de7add86defe65dd178153c5daf04dac51e (diff) | |
download | slackbuilds-e1462e34942cd9d0d9fe77e72579202e569eb232.tar.gz |
system/spambayes: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/spambayes/spambayes.SlackBuild')
-rw-r--r-- | system/spambayes/spambayes.SlackBuild | 11 |
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 |