summaryrefslogtreecommitdiffstats
path: root/libraries
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:10:16 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:10:16 -0400
commitfa28cf8d08d0d7ace5b392ee6ca1b4447606e0c3 (patch)
treece7454ca8ec856d37b547c67a895c8d81f98cf2a /libraries
parentaa1c50d8ea09047c99b931ceb993ac6c49c57db0 (diff)
downloadslackbuilds-fa28cf8d08d0d7ace5b392ee6ca1b4447606e0c3.tar.gz
slackbuilds-fa28cf8d08d0d7ace5b392ee6ca1b4447606e0c3.tar.xz
libraries/python2-chardet: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r--libraries/python2-chardet/python2-chardet.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/python2-chardet/python2-chardet.SlackBuild b/libraries/python2-chardet/python2-chardet.SlackBuild
index 6c92af6f05..9873cf3b3b 100644
--- a/libraries/python2-chardet/python2-chardet.SlackBuild
+++ b/libraries/python2-chardet/python2-chardet.SlackBuild
@@ -6,10 +6,19 @@
PRGNAM=python2-chardet
VERSION=${VERSION:-2.0.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