summaryrefslogtreecommitdiffstats
path: root/development/help2man
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:02:55 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:02:55 -0400
commit3b815c1c35908e27f4903ec82b7043bd44c7af14 (patch)
treee187bdf282594cf0628b88b6ab1c3f2c5fe1534e /development/help2man
parentbcb1ebcab83ce2cb9810a2045aa487ff461483ff (diff)
downloadslackbuilds-3b815c1c35908e27f4903ec82b7043bd44c7af14.tar.gz
slackbuilds-3b815c1c35908e27f4903ec82b7043bd44c7af14.tar.xz
development/help2man: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development/help2man')
-rw-r--r--development/help2man/help2man.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/development/help2man/help2man.SlackBuild b/development/help2man/help2man.SlackBuild
index a5bac87e3f..22bdd5fc08 100644
--- a/development/help2man/help2man.SlackBuild
+++ b/development/help2man/help2man.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=help2man
VERSION=${VERSION:-1.36.4}
-ARCH=${ARCH:-i486}
BUILD=${BUILD:-2}
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
@@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e