diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:29 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:29 -0400 |
commit | 76aff6b6e89963d55e1906a77aa425b2391d2f2d (patch) | |
tree | 804daa5f2c71da4b9c5b82a84031e25613cd9e4c /development | |
parent | ea2b1109243b4155984f098285af62d94be81640 (diff) | |
download | slackbuilds-76aff6b6e89963d55e1906a77aa425b2391d2f2d.tar.gz |
development/pyflakes: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r-- | development/pyflakes/pyflakes.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/development/pyflakes/pyflakes.SlackBuild b/development/pyflakes/pyflakes.SlackBuild index 9604a2747d..01284f8684 100644 --- a/development/pyflakes/pyflakes.SlackBuild +++ b/development/pyflakes/pyflakes.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=pyflakes VERSION=${VERSION:-0.4.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 |