diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:01:27 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:01:27 -0400 |
commit | f00103eb3ab113ba840d232517a1b14afab4d18f (patch) | |
tree | 7cceb25bbb2f1b580d3b2620e5f432e4435e33f2 /desktop/quickaccess | |
parent | 1685bbc9186de304234fbc43304edd59ba002c0f (diff) | |
download | slackbuilds-f00103eb3ab113ba840d232517a1b14afab4d18f.tar.gz |
desktop/quickaccess: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/quickaccess')
-rw-r--r-- | desktop/quickaccess/quickaccess.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/desktop/quickaccess/quickaccess.SlackBuild b/desktop/quickaccess/quickaccess.SlackBuild index 23458ebfa5..75c903c1c1 100644 --- a/desktop/quickaccess/quickaccess.SlackBuild +++ b/desktop/quickaccess/quickaccess.SlackBuild @@ -5,10 +5,19 @@ PRGNAM=quickaccess VERSION=${VERSION:-0.8.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 @@ -23,6 +32,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |