summaryrefslogtreecommitdiffstats
path: root/desktop/wmdl
diff options
context:
space:
mode:
author David Somero2010-06-04 07:01:46 +0200
committer David Somero2010-06-04 07:01:46 +0200
commitb3ab706012961889540f99127ae3753abbba0020 (patch)
tree8b77ec8a7f6fc5e38ab8cc910a1c39a371c2bd60 /desktop/wmdl
parent6bd5b9d3d8fac6412dbfbdb2fbb8b5f770818683 (diff)
downloadslackbuilds-b3ab706012961889540f99127ae3753abbba0020.tar.gz
desktop/wmdl: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/wmdl')
-rw-r--r--desktop/wmdl/wmdl.SlackBuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/desktop/wmdl/wmdl.SlackBuild b/desktop/wmdl/wmdl.SlackBuild
index f6e2aedc37..9146aab1e3 100644
--- a/desktop/wmdl/wmdl.SlackBuild
+++ b/desktop/wmdl/wmdl.SlackBuild
@@ -6,10 +6,19 @@
PRGNAM=wmdl
VERSION=${VERSION:-1.4.1}
-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
@@ -24,6 +33,9 @@ elif [ "$ARCH" = "i686" ]; then
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
fi
set -e