From 55a2e414ba4e814422afc85dd0a8a7ad90c935e5 Mon Sep 17 00:00:00 2001 From: Robby Workman Date: Tue, 18 May 2010 16:32:51 -0500 Subject: system/ktsuss: Miscellaneous script cleanups. --- system/ktsuss/ktsuss.SlackBuild | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'system/ktsuss') diff --git a/system/ktsuss/ktsuss.SlackBuild b/system/ktsuss/ktsuss.SlackBuild index c3e782924f..07003ba39e 100644 --- a/system/ktsuss/ktsuss.SlackBuild +++ b/system/ktsuss/ktsuss.SlackBuild @@ -3,7 +3,7 @@ # Slackware build script for ktsuss # Copyright 2008 Murat D. Kadirov -# Copyright 2009 Robby Workman Northport, AL, USA +# Copyright 2009,2010 Robby Workman Northport, AL, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,10 +25,19 @@ PRGNAM=ktsuss VERSION=${VERSION:-1.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) export ARCH=i486 ;; + arm*) export ARCH=arm ;; + # Unless $ARCH is already set, use uname -m for all other archs: + *) export ARCH=$( uname -m ) ;; + esac +fi + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM @@ -43,6 +52,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e -- cgit v1.2.3