diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:20 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:20 -0400 |
commit | bb6fd1f762aab26fd458c2851ffc5287be3581fa (patch) | |
tree | 27ae6af103deead672f6968cca4120322b66fa7b | |
parent | fa636f44d309902f4eee4e8dd839e13ec2ec518d (diff) | |
download | slackbuilds-bb6fd1f762aab26fd458c2851ffc5287be3581fa.tar.gz |
libraries/pyyaml: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r-- | libraries/pyyaml/pyyaml.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/pyyaml/pyyaml.SlackBuild b/libraries/pyyaml/pyyaml.SlackBuild index 3fbc9496f9..c90ce1a0f5 100644 --- a/libraries/pyyaml/pyyaml.SlackBuild +++ b/libraries/pyyaml/pyyaml.SlackBuild @@ -6,10 +6,19 @@ PRGNAM=pyyaml VERSION=${VERSION:-3.09} -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} # For consistency's sake, use this PKG=$TMP/package-$PRGNAM |