summaryrefslogtreecommitdiffstats
path: root/network/openrdate
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:13:37 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:13:37 -0400
commitf7aeb5d7ebb584d9e61071a26af6f8e7c25c342a (patch)
tree913a1d2759b615decb345ec1338b8475bd67c5d4 /network/openrdate
parentc54d3269ff0db7f7cb56c45acf04cd570de44d05 (diff)
downloadslackbuilds-f7aeb5d7ebb584d9e61071a26af6f8e7c25c342a.tar.gz
slackbuilds-f7aeb5d7ebb584d9e61071a26af6f8e7c25c342a.tar.xz
network/openrdate: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/openrdate')
-rw-r--r--network/openrdate/openrdate.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/network/openrdate/openrdate.SlackBuild b/network/openrdate/openrdate.SlackBuild
index 91b8366166..11d1b8e6d6 100644
--- a/network/openrdate/openrdate.SlackBuild
+++ b/network/openrdate/openrdate.SlackBuild
@@ -6,10 +6,19 @@
PRGNAM=openrdate
VERSION=${VERSION:-1.2}
-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
@@ -24,6 +33,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e