summaryrefslogtreecommitdiffstats
path: root/network/opendchub
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:13:36 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:13:36 -0400
commit22b1fa3c255e3576da48b34260ef4992134cd369 (patch)
treed0643ec9211e3a9601dc61c32b3da1783385ff8e /network/opendchub
parentd97e6e9c0723385884e7c3e889700e278991db9a (diff)
downloadslackbuilds-22b1fa3c255e3576da48b34260ef4992134cd369.tar.gz
slackbuilds-22b1fa3c255e3576da48b34260ef4992134cd369.tar.xz
network/opendchub: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/opendchub')
-rw-r--r--network/opendchub/opendchub.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/network/opendchub/opendchub.SlackBuild b/network/opendchub/opendchub.SlackBuild
index 27eb99f3bc..8895cb009a 100644
--- a/network/opendchub/opendchub.SlackBuild
+++ b/network/opendchub/opendchub.SlackBuild
@@ -21,10 +21,19 @@
PRGNAM=opendchub
VERSION=0.7.15
-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
@@ -39,6 +48,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e