summaryrefslogtreecommitdiffstats
path: root/system/filelight
diff options
context:
space:
mode:
author David Somero2010-06-04 07:15:36 +0200
committer David Somero2010-06-04 07:15:36 +0200
commitdbf6ed95685448b391e331d3df776bf6ac5de18f (patch)
tree24fbfa58b9bd5bb636dfc4220a122abc650f69e9 /system/filelight
parent17959c5afb3a02600d7c7ce8a17a601c56352910 (diff)
downloadslackbuilds-dbf6ed95685448b391e331d3df776bf6ac5de18f.tar.gz
system/filelight: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/filelight')
-rw-r--r--system/filelight/filelight.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/system/filelight/filelight.SlackBuild b/system/filelight/filelight.SlackBuild
index e19e19f67b..eb8a24a180 100644
--- a/system/filelight/filelight.SlackBuild
+++ b/system/filelight/filelight.SlackBuild
@@ -6,10 +6,19 @@
PRGNAM=filelight
VERSION=${VERSION:-1.9rc3}
-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
@@ -26,6 +35,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