diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:24 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:24 -0400 |
commit | c94dc06a09584c78bf6749fbc8e4c9fe1924010f (patch) | |
tree | 5974ab3796eb974e49b519cdf4ffa48fae8a2be3 /development | |
parent | 6b8445e14402707f0c10b8f3adf5474d93ad405d (diff) | |
download | slackbuilds-c94dc06a09584c78bf6749fbc8e4c9fe1924010f.tar.gz |
development/pip: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r-- | development/pip/pip.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
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 |