summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:10:18 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:10:18 -0400
commit6d78f4bf074c4835ecf5c2fd55ea1176d8a19f0c (patch)
treed8b4c473ce58c459a64d807b7b3e7cc014d62889
parentd8f999262ac1a4b4cfc9518c40cfbc8fc8a4b793 (diff)
downloadslackbuilds-6d78f4bf074c4835ecf5c2fd55ea1176d8a19f0c.tar.gz
slackbuilds-6d78f4bf074c4835ecf5c2fd55ea1176d8a19f0c.tar.xz
libraries/pyutil: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r--libraries/pyutil/pyutil.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/pyutil/pyutil.SlackBuild b/libraries/pyutil/pyutil.SlackBuild
index 0a157c4a42..8242370786 100644
--- a/libraries/pyutil/pyutil.SlackBuild
+++ b/libraries/pyutil/pyutil.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=pyutil
VERSION=${VERSION:-1.7.1}
-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