summaryrefslogtreecommitdiffstats
path: root/desktop/wmctrl
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:01:45 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:01:45 -0400
commit61ef9d50d55d4844b3eca9ae42a1a4b2ffe597bd (patch)
tree0cadcd64503a87e4fa130fa079c26aa34554391a /desktop/wmctrl
parenta1647063053cdca337c974a6b625f8abcb8c474b (diff)
downloadslackbuilds-61ef9d50d55d4844b3eca9ae42a1a4b2ffe597bd.tar.gz
slackbuilds-61ef9d50d55d4844b3eca9ae42a1a4b2ffe597bd.tar.xz
desktop/wmctrl: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/wmctrl')
-rw-r--r--desktop/wmctrl/wmctrl.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/desktop/wmctrl/wmctrl.SlackBuild b/desktop/wmctrl/wmctrl.SlackBuild
index 6f2c952f78..a2fe190402 100644
--- a/desktop/wmctrl/wmctrl.SlackBuild
+++ b/desktop/wmctrl/wmctrl.SlackBuild
@@ -7,10 +7,19 @@
PRGNAM=wmctrl
VERSION=1.07
-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
@@ -27,6 +36,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e