summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
author David Somero2010-06-04 07:11:15 +0200
committer David Somero2010-06-04 07:11:15 +0200
commitd0cde8ca8a735122a4591071a3f71aa9f783e442 (patch)
tree7622368296c7513c9c42af01ac09da275089bc6b /misc
parentfd65c89382db30d543de115738754f01f5ed7008 (diff)
downloadslackbuilds-d0cde8ca8a735122a4591071a3f71aa9f783e442.tar.gz
misc/recode: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'misc')
-rw-r--r--misc/recode/recode.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/misc/recode/recode.SlackBuild b/misc/recode/recode.SlackBuild
index c8063e50ae..e89c4b2b56 100644
--- a/misc/recode/recode.SlackBuild
+++ b/misc/recode/recode.SlackBuild
@@ -13,10 +13,19 @@
PRGNAM=recode
VERSION=3.6
-ARCH=${ARCH:-i486}
BUILD=${BUILD:-2}
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
@@ -31,6 +40,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e