diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:03 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:03 -0400 |
commit | d23cbb008f191381ed80d4cfb65a9f1b7f579654 (patch) | |
tree | e3c9efdd4cb0278eb05dfa27c66bdd96b9c1ae9c /libraries | |
parent | 342cc5ec317d821962cb2cf97922edb74b064aff (diff) | |
download | slackbuilds-d23cbb008f191381ed80d4cfb65a9f1b7f579654.tar.gz |
libraries/pyfltk: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/pyfltk/pyfltk.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/pyfltk/pyfltk.SlackBuild b/libraries/pyfltk/pyfltk.SlackBuild index 4cf200762f..b6223fec46 100644 --- a/libraries/pyfltk/pyfltk.SlackBuild +++ b/libraries/pyfltk/pyfltk.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=pyfltk VERSION=${VERSION:-1.1.5} -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 |