diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:17 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:17 -0400 |
commit | dd9f0fc637728ab6c42c82777cb6b47fca4f73db (patch) | |
tree | 830658df413d27b12afab5108f7d71e1ad28fa91 /libraries/pytz | |
parent | fa28cf8d08d0d7ace5b392ee6ca1b4447606e0c3 (diff) | |
download | slackbuilds-dd9f0fc637728ab6c42c82777cb6b47fca4f73db.tar.gz |
libraries/pytz: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/pytz')
-rw-r--r-- | libraries/pytz/pytz.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/pytz/pytz.SlackBuild b/libraries/pytz/pytz.SlackBuild index a102270242..27d8fb5cd5 100644 --- a/libraries/pytz/pytz.SlackBuild +++ b/libraries/pytz/pytz.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=pytz VERSION=2009n -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 |