summaryrefslogtreecommitdiffstats
path: root/development
diff options
context:
space:
mode:
author David Somero2010-06-04 07:03:31 +0200
committer David Somero2010-06-04 07:03:31 +0200
commit35c27c08eb837e70997a330891480edc02150b9f (patch)
tree3289c90aac85aae9e473d4632767b37ef23dd991 /development
parent45b149cc5490a6e2614cd36f95f41c9747ea607c (diff)
downloadslackbuilds-35c27c08eb837e70997a330891480edc02150b9f.tar.gz
development/pysetuptools: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r--development/pysetuptools/pysetuptools.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/development/pysetuptools/pysetuptools.SlackBuild b/development/pysetuptools/pysetuptools.SlackBuild
index 37105795a2..7b443ad754 100644
--- a/development/pysetuptools/pysetuptools.SlackBuild
+++ b/development/pysetuptools/pysetuptools.SlackBuild
@@ -14,10 +14,19 @@
PRGNAM=pysetuptools
SRC_NAME=setuptools
VERSION=0.6c11
-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=${PKG:-$TMP/package-$SRC_NAME}