system/ktsuss: Miscellaneous script cleanups.

This commit is contained in:
Robby Workman 2010-05-18 16:32:51 -05:00
parent 98ef2c2210
commit 55a2e414ba

View file

@ -3,7 +3,7 @@
# Slackware build script for ktsuss
# Copyright 2008 Murat D. Kadirov <banderols@gmail.com>
# 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