summaryrefslogtreecommitdiffstats
path: root/libraries/mmpython
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:09:10 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:09:10 -0400
commit51c932df820ac0e99e09ddc6abe60683fc65260b (patch)
treef7595c0665f4d7fcb6154a08fc02b3d5cb73d490 /libraries/mmpython
parent9e55bd9162d003ecb98f242ce699fd3514538120 (diff)
downloadslackbuilds-51c932df820ac0e99e09ddc6abe60683fc65260b.tar.gz
slackbuilds-51c932df820ac0e99e09ddc6abe60683fc65260b.tar.xz
libraries/mmpython: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/mmpython')
-rw-r--r--libraries/mmpython/mmpython.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/mmpython/mmpython.SlackBuild b/libraries/mmpython/mmpython.SlackBuild
index 316b292db4..f9d15f208b 100644
--- a/libraries/mmpython/mmpython.SlackBuild
+++ b/libraries/mmpython/mmpython.SlackBuild
@@ -6,10 +6,19 @@
PRGNAM=mmpython
VERSION=${VERSION:-0.4.10}
-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