diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:05 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:05 -0400 |
commit | 80562ec1501681b42eb86769945b1e2ef8aa00a5 (patch) | |
tree | 395ab1651187c541fe5bef28ae9bbbb7138b3d60 /libraries/pygoogle | |
parent | 5dd6d2e18b7546dca1b09b3d4b12e28d586bf7c4 (diff) | |
download | slackbuilds-80562ec1501681b42eb86769945b1e2ef8aa00a5.tar.gz |
libraries/pygoogle: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/pygoogle')
-rw-r--r-- | libraries/pygoogle/pygoogle.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/pygoogle/pygoogle.SlackBuild b/libraries/pygoogle/pygoogle.SlackBuild index 39ff85aeed..ef7f23ec23 100644 --- a/libraries/pygoogle/pygoogle.SlackBuild +++ b/libraries/pygoogle/pygoogle.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=pygoogle VERSION=0.6 -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 |