summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author David Somero2010-06-04 07:16:39 +0200
committer David Somero2010-06-04 07:16:39 +0200
commitd15c9384246f1a056e85ede2ff8bc0673546ef4c (patch)
tree13301752c757f70a3992aca943ce4216c24b1502 /system
parent60a59631abd93c8abe1b9491013b7c74f42ca6d0 (diff)
downloadslackbuilds-d15c9384246f1a056e85ede2ff8bc0673546ef4c.tar.gz
system/rkhunter: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r--system/rkhunter/rkhunter.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/system/rkhunter/rkhunter.SlackBuild b/system/rkhunter/rkhunter.SlackBuild
index bfccc5e1bd..cb8bd46e9b 100644
--- a/system/rkhunter/rkhunter.SlackBuild
+++ b/system/rkhunter/rkhunter.SlackBuild
@@ -6,10 +6,19 @@
PRGNAM=rkhunter
VERSION=${VERSION:-1.3.4}
-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 # Exit on most errors