diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:04 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:04 -0400 |
commit | 2fed194e17463f380761da5e20d4bdc3308d1fb7 (patch) | |
tree | 17b5dfaf320b0a7b76a09b8e887ceb48f09a9927 /network | |
parent | a36126bcc29b798a3d498b471068171f025d754b (diff) | |
download | slackbuilds-2fed194e17463f380761da5e20d4bdc3308d1fb7.tar.gz |
network/pyzor: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r-- | network/pyzor/pyzor.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/network/pyzor/pyzor.SlackBuild b/network/pyzor/pyzor.SlackBuild index ba13e202c4..a7a54eb7d0 100644 --- a/network/pyzor/pyzor.SlackBuild +++ b/network/pyzor/pyzor.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=pyzor VERSION=${VERSION:-0.5.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 |