diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:01:14 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:01:14 -0400 |
commit | a0de0648b5616111f69ee72b45831e334870cad3 (patch) | |
tree | 06545f2a43df3d964fd2671a8c2750d90b0c45f0 /desktop | |
parent | 88b94900abade5c651190121b57ccc9b02cc86d9 (diff) | |
download | slackbuilds-a0de0648b5616111f69ee72b45831e334870cad3.tar.gz |
desktop/matchbox-panel: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/matchbox-panel/matchbox-panel.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/desktop/matchbox-panel/matchbox-panel.SlackBuild b/desktop/matchbox-panel/matchbox-panel.SlackBuild index 2252664f58..7b80c3bc86 100644 --- a/desktop/matchbox-panel/matchbox-panel.SlackBuild +++ b/desktop/matchbox-panel/matchbox-panel.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=matchbox-panel VERSION=0.9.3 -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" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |