summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Somero <xgizzmo@slackbuilds.org>2010-06-04 01:09:24 -0400
committerDavid Somero <xgizzmo@slackbuilds.org>2010-06-04 01:09:24 -0400
commitd222261f059aa603dfdf955e72357b3266b46b89 (patch)
treefcf677b58f7b8f50028943d6b386fc171d8e9518
parenta5a9933954db02a69108b2f9fa517f9ff3cb11e9 (diff)
downloadslackbuilds-d222261f059aa603dfdf955e72357b3266b46b89.tar.gz
libraries/perl-Crypt-OpenSSL-RSA: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r--libraries/perl-Crypt-OpenSSL-RSA/perl-Crypt-OpenSSL-RSA.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/perl-Crypt-OpenSSL-RSA/perl-Crypt-OpenSSL-RSA.SlackBuild b/libraries/perl-Crypt-OpenSSL-RSA/perl-Crypt-OpenSSL-RSA.SlackBuild
index 0c32b99280..72ded78961 100644
--- a/libraries/perl-Crypt-OpenSSL-RSA/perl-Crypt-OpenSSL-RSA.SlackBuild
+++ b/libraries/perl-Crypt-OpenSSL-RSA/perl-Crypt-OpenSSL-RSA.SlackBuild
@@ -29,10 +29,19 @@
SRCNAM=Crypt-OpenSSL-RSA
PRGNAM=perl-Crypt-OpenSSL-RSA
VERSION=0.26
-ARCH=${ARCH:-i486}
TAG=${TAG:-_SBo}
BUILD=${BUILD:-1}
+# 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
@@ -51,6 +60,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi