summaryrefslogtreecommitdiffstats
path: root/libraries
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2010-05-26 22:23:19 -0500
committer Robby Workman <rworkman@slackbuilds.org>2010-05-26 23:57:57 -0500
commit4e12bf8401656a94d1d8b526e835939fb46ce2cf (patch)
treee6150cbf3f9f8a8264d5fbc7f385671ec6d2f23e /libraries
parent41911fd4ced8e210a97d4ac689fe3e131a61836f (diff)
downloadslackbuilds-4e12bf8401656a94d1d8b526e835939fb46ce2cf.tar.gz
slackbuilds-4e12bf8401656a94d1d8b526e835939fb46ce2cf.tar.xz
libraries/pyOpenSSL: Miscellaneous cleanups
Diffstat (limited to 'libraries')
-rw-r--r--libraries/pyOpenSSL/pyOpenSSL.SlackBuild13
1 files changed, 11 insertions, 2 deletions
diff --git a/libraries/pyOpenSSL/pyOpenSSL.SlackBuild b/libraries/pyOpenSSL/pyOpenSSL.SlackBuild
index 1d806d269d..da1f8e8d08 100644
--- a/libraries/pyOpenSSL/pyOpenSSL.SlackBuild
+++ b/libraries/pyOpenSSL/pyOpenSSL.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=pyOpenSSL
VERSION=0.8
-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
@@ -41,7 +50,7 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
-tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz
+tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .