summaryrefslogtreecommitdiffstats
path: root/libraries/pydot
diff options
context:
space:
mode:
author David Somero2010-06-04 07:10:03 +0200
committer David Somero2010-06-04 07:10:03 +0200
commit342cc5ec317d821962cb2cf97922edb74b064aff (patch)
treec249237843334e326ff431b30a50107017f8c930 /libraries/pydot
parent25bb924fa6b86bbf363bfb6ddf351fb8a6d6f2d5 (diff)
downloadslackbuilds-342cc5ec317d821962cb2cf97922edb74b064aff.tar.gz
libraries/pydot: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/pydot')
-rw-r--r--libraries/pydot/pydot.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/pydot/pydot.SlackBuild b/libraries/pydot/pydot.SlackBuild
index 6f5b60ae40..a52d53da03 100644
--- a/libraries/pydot/pydot.SlackBuild
+++ b/libraries/pydot/pydot.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=pydot
VERSION=1.0.2
-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