summaryrefslogtreecommitdiffstats
path: root/development
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:03:22 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:03:22 -0400
commit049883d80bef838775cf09e0354f9f9f17884a33 (patch)
tree6b9b672b6e458aa4c4cc2022e82ebc69170088b7 /development
parent600fd975afb40967564126ec75e451ec8aa0678c (diff)
downloadslackbuilds-049883d80bef838775cf09e0354f9f9f17884a33.tar.gz
slackbuilds-049883d80bef838775cf09e0354f9f9f17884a33.tar.xz
development/perl-Net-Write: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r--development/perl-Net-Write/perl-Net-Write.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/development/perl-Net-Write/perl-Net-Write.SlackBuild b/development/perl-Net-Write/perl-Net-Write.SlackBuild
index 7ed904840b..a55a86de2c 100644
--- a/development/perl-Net-Write/perl-Net-Write.SlackBuild
+++ b/development/perl-Net-Write/perl-Net-Write.SlackBuild
@@ -24,13 +24,22 @@
PRGNAM=perl-Net-Write
VERSION=${VERSION:-1.05}
-ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
SRC_PRGNAM=Net-Write
DOCS="LICENSE LICENSE.Artistic README"
+# 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
@@ -45,6 +54,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e