summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
author David Somero2010-06-04 07:11:06 +0200
committer David Somero2010-06-04 07:11:06 +0200
commitccec52b1b691e465bc825df6a82d6eccde20d9db (patch)
treea6c84b35ec60b8aaefbdbce13abf920db777606f /misc
parentb652ce8be20cfe97f01ad8f0becf1b2ceb6c01f5 (diff)
downloadslackbuilds-ccec52b1b691e465bc825df6a82d6eccde20d9db.tar.gz
misc/krename: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'misc')
-rw-r--r--misc/krename/krename.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/misc/krename/krename.SlackBuild b/misc/krename/krename.SlackBuild
index 2b1b201a5c..8192e33790 100644
--- a/misc/krename/krename.SlackBuild
+++ b/misc/krename/krename.SlackBuild
@@ -26,10 +26,19 @@
PRGNAM=krename
VERSION=4.0.3
-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
@@ -44,6 +53,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e