summaryrefslogtreecommitdiffstats
path: root/development/Cython
diff options
context:
space:
mode:
author David Somero2010-06-04 07:02:21 +0200
committer David Somero2010-06-04 07:02:21 +0200
commit5f16ce65c90b25fc74ef2f13401872d1306d8ff6 (patch)
treec4677862c4df1e24863ea630b37a059706f5aeef /development/Cython
parent588a287a7db4e005df60c01e94fee83fcb0b6dcd (diff)
downloadslackbuilds-5f16ce65c90b25fc74ef2f13401872d1306d8ff6.tar.gz
development/Cython: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development/Cython')
-rw-r--r--development/Cython/Cython.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/development/Cython/Cython.SlackBuild b/development/Cython/Cython.SlackBuild
index 70e6a6e1e7..f07bbffec2 100644
--- a/development/Cython/Cython.SlackBuild
+++ b/development/Cython/Cython.SlackBuild
@@ -4,10 +4,19 @@
PRGNAM=Cython
VERSION=${VERSION:-0.12}
-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