diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:01:40 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:01:40 -0400 |
commit | 9d496656af8653aac7604938d6ee45c29eb22da1 (patch) | |
tree | f824c1cda490e7c00d709e92286d85e0f93bd7ff /desktop/trayer | |
parent | d17acf304b8f43f9a34f1a38ae6359585b6a8fdd (diff) | |
download | slackbuilds-9d496656af8653aac7604938d6ee45c29eb22da1.tar.gz |
desktop/trayer: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/trayer')
-rw-r--r-- | desktop/trayer/trayer.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/desktop/trayer/trayer.SlackBuild b/desktop/trayer/trayer.SlackBuild index 9530f40052..5c8aae0c82 100644 --- a/desktop/trayer/trayer.SlackBuild +++ b/desktop/trayer/trayer.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=trayer VERSION=${VERSION:-1.0} -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 @@ -42,6 +51,9 @@ elif [ "$ARCH" = "s390" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |