summaryrefslogtreecommitdiffstats
path: root/libraries/dnspython/dnspython.SlackBuild
diff options
context:
space:
mode:
author David Somero2010-06-04 07:06:22 +0200
committer David Somero2010-06-04 07:06:22 +0200
commit198d146f292f3fe04772084bf8d6904c1eb816c7 (patch)
treef5e711b14ea015318cc0a8c230cc3efa0ba1362f /libraries/dnspython/dnspython.SlackBuild
parent11366febd246c36f1624278780a14374b507d5a2 (diff)
downloadslackbuilds-198d146f292f3fe04772084bf8d6904c1eb816c7.tar.gz
libraries/dnspython: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/dnspython/dnspython.SlackBuild')
-rw-r--r--libraries/dnspython/dnspython.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/dnspython/dnspython.SlackBuild b/libraries/dnspython/dnspython.SlackBuild
index 46cec845f8..47550c6cde 100644
--- a/libraries/dnspython/dnspython.SlackBuild
+++ b/libraries/dnspython/dnspython.SlackBuild
@@ -4,10 +4,19 @@
PRGNAM=dnspython
VERSION=${VERSION:-1.8.0}
-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