diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:56 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:56 -0400 |
commit | 858c4d1405f45216b35f6be75c2b8758623c5b8b (patch) | |
tree | 9547803b87866e6077a3bd1a5cbb52e261366c32 /libraries | |
parent | b92c0c39287ba190d500f73bfc1cc434d02b17d5 (diff) | |
download | slackbuilds-858c4d1405f45216b35f6be75c2b8758623c5b8b.tar.gz |
libraries/PyQwt: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/PyQwt/PyQwt.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/PyQwt/PyQwt.SlackBuild b/libraries/PyQwt/PyQwt.SlackBuild index 005630026d..a2d94fb33d 100644 --- a/libraries/PyQwt/PyQwt.SlackBuild +++ b/libraries/PyQwt/PyQwt.SlackBuild @@ -5,10 +5,19 @@ PRGNAM=PyQwt VERSION=${VERSION:-5.2.0} -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 |