diff options
author | Matteo Bernardini <matteo.bernardini@sns.it> | 2010-05-29 14:07:59 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-06-01 00:45:31 -0500 |
commit | 92847832bb5fd82d4115577fd4f0037a33d2c3d7 (patch) | |
tree | ac16f246467b6dddf2a7c09d6e8af3f2ddfef3fb /system/foremost | |
parent | 18ef1c8cac63d66a292cf2eb5dfae93f8f8bb264 (diff) | |
download | slackbuilds-92847832bb5fd82d4115577fd4f0037a33d2c3d7.tar.gz |
system/foremost: miscellaneous cleanups
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/foremost')
-rw-r--r-- | system/foremost/foremost.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/system/foremost/foremost.SlackBuild b/system/foremost/foremost.SlackBuild index ef43fde82f..6fc6905ee0 100644 --- a/system/foremost/foremost.SlackBuild +++ b/system/foremost/foremost.SlackBuild @@ -4,10 +4,19 @@ PRGNAM=foremost VERSION=${VERSION:-1.5.6} -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 @@ -22,6 +31,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |