diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:01:59 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:01:59 -0400 |
commit | 53fb687e28f4c137f8595bb409353e15f241e956 (patch) | |
tree | 60a05e5a1745d718f2dce481394f4627c9a34134 /desktop/xfce4-mailwatch-plugin | |
parent | 92cd3213c6ce697c6f5c97da0f1fca89ff5fb251 (diff) |
desktop/xfce4-mailwatch-plugin: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/xfce4-mailwatch-plugin')
-rw-r--r-- | desktop/xfce4-mailwatch-plugin/xfce4-mailwatch-plugin.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/desktop/xfce4-mailwatch-plugin/xfce4-mailwatch-plugin.SlackBuild b/desktop/xfce4-mailwatch-plugin/xfce4-mailwatch-plugin.SlackBuild index fc0ca0793255..90058ce76165 100644 --- a/desktop/xfce4-mailwatch-plugin/xfce4-mailwatch-plugin.SlackBuild +++ b/desktop/xfce4-mailwatch-plugin/xfce4-mailwatch-plugin.SlackBuild @@ -25,10 +25,19 @@ PRGNAM=xfce4-mailwatch-plugin VERSION=${VERSION:-1.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 @@ -43,6 +52,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e # Exit on most errors |