From c94dc06a09584c78bf6749fbc8e4c9fe1924010f Mon Sep 17 00:00:00 2001 From: David Somero Date: Fri, 4 Jun 2010 01:03:24 -0400 Subject: development/pip: Misc automated cleanups. Signed-off-by: David Somero --- development/pip/pip.SlackBuild | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'development') diff --git a/development/pip/pip.SlackBuild b/development/pip/pip.SlackBuild index 75cafec24c..c86f257e4e 100644 --- a/development/pip/pip.SlackBuild +++ b/development/pip/pip.SlackBuild @@ -5,10 +5,19 @@ PRGNAM=pip VERSION=${VERSION:-0.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 -- cgit v1.2.3