diff options
author | David Somero | 2010-06-04 07:01:21 +0200 |
---|---|---|
committer | David Somero | 2010-06-04 07:01:21 +0200 |
commit | 0dafdbed447f0d1c9b988f3cce42b4058753c93a (patch) | |
tree | 920e4dd2a7216e09d571526f6a3c3ee37d0e19e4 /desktop/peksystray | |
parent | 44fee3c5611ab261822a36504aa44016e4e8be98 (diff) | |
download | slackbuilds-0dafdbed447f0d1c9b988f3cce42b4058753c93a.tar.gz |
desktop/peksystray: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/peksystray')
-rw-r--r-- | desktop/peksystray/peksystray.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/desktop/peksystray/peksystray.SlackBuild b/desktop/peksystray/peksystray.SlackBuild index cf1c52f608..032f75d0d2 100644 --- a/desktop/peksystray/peksystray.SlackBuild +++ b/desktop/peksystray/peksystray.SlackBuild @@ -6,10 +6,19 @@ PRGNAM=peksystray VERSION=${VERSION:-0.4.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 @@ -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 |