summaryrefslogtreecommitdiffstats
path: root/system/gnome-commander
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:15:44 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:15:44 -0400
commit84f968de6bdf8effd6d58a0a08591097296d66a1 (patch)
tree017782fdaec8ead9f8fc0189a8bf4845d22cfd15 /system/gnome-commander
parent4a0f7d212fa806d23a55821c07a697f8b4f82526 (diff)
downloadslackbuilds-84f968de6bdf8effd6d58a0a08591097296d66a1.tar.gz
slackbuilds-84f968de6bdf8effd6d58a0a08591097296d66a1.tar.xz
system/gnome-commander: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/gnome-commander')
-rw-r--r--system/gnome-commander/gnome-commander.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/system/gnome-commander/gnome-commander.SlackBuild b/system/gnome-commander/gnome-commander.SlackBuild
index cf1ffd3e69..3499974caa 100644
--- a/system/gnome-commander/gnome-commander.SlackBuild
+++ b/system/gnome-commander/gnome-commander.SlackBuild
@@ -3,10 +3,19 @@
PRGNAM=gnome-commander
VERSION=${VERSION:-1.2.8.2}
-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
@@ -21,6 +30,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e