summaryrefslogtreecommitdiffstats
path: root/network/perl-Mail-DKIM
diff options
context:
space:
mode:
author David Somero2010-06-04 07:13:46 +0200
committer David Somero2010-06-04 07:13:46 +0200
commit8ac1206b81124be52392604a7a282f7f95a27710 (patch)
tree135f97016a1810b9fa850002fe0f969720e04a51 /network/perl-Mail-DKIM
parentcec1890af25a7776c02dd23209d71228ac02c215 (diff)
downloadslackbuilds-8ac1206b81124be52392604a7a282f7f95a27710.tar.gz
network/perl-Mail-DKIM: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/perl-Mail-DKIM')
-rw-r--r--network/perl-Mail-DKIM/perl-Mail-DKIM.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/network/perl-Mail-DKIM/perl-Mail-DKIM.SlackBuild b/network/perl-Mail-DKIM/perl-Mail-DKIM.SlackBuild
index 6d94e05a59..dd3c47800c 100644
--- a/network/perl-Mail-DKIM/perl-Mail-DKIM.SlackBuild
+++ b/network/perl-Mail-DKIM/perl-Mail-DKIM.SlackBuild
@@ -29,10 +29,19 @@
SRCNAM=Mail-DKIM
PRGNAM=perl-Mail-DKIM
VERSION=0.38
-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
@@ -49,6 +58,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
DOCS="ChangeLog README"