diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:54 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:54 -0400 |
commit | 7fad2c1d18ca4919a22bb5c487e31277e58fa0fd (patch) | |
tree | 78036839935deefb99e3d16cc1c55106dbafedec | |
parent | f137bfd2cb3d9beba6e27881f996d8f423d7a9b3 (diff) | |
download | slackbuilds-7fad2c1d18ca4919a22bb5c487e31277e58fa0fd.tar.gz |
system/imwheel: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r-- | system/imwheel/imwheel.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/system/imwheel/imwheel.SlackBuild b/system/imwheel/imwheel.SlackBuild index baccf626ae..a4d2b6dd9b 100644 --- a/system/imwheel/imwheel.SlackBuild +++ b/system/imwheel/imwheel.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=imwheel VERSION=${VERSION:-1.0.0pre12} -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 @@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |