diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:15 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:15 -0400 |
commit | c2cbd6e72c582a1e0347638f51950cc36ba8662b (patch) | |
tree | 005a4f873bb5704df40894d8a7193fae2e512ca9 /libraries | |
parent | 7fbfc850a54296ae46230378898c9ee2e61f1310 (diff) | |
download | slackbuilds-c2cbd6e72c582a1e0347638f51950cc36ba8662b.tar.gz |
libraries/python-twitter: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries')
-rwxr-xr-x | libraries/python-twitter/python-twitter.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libraries/python-twitter/python-twitter.SlackBuild b/libraries/python-twitter/python-twitter.SlackBuild index fd7e13812b..f6a6c30727 100755 --- a/libraries/python-twitter/python-twitter.SlackBuild +++ b/libraries/python-twitter/python-twitter.SlackBuild @@ -5,10 +5,19 @@ PRGNAM=python-twitter VERSION=${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 |