diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2010-05-18 13:43:27 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-18 13:43:27 -0500 |
commit | 99115d2b649df5ec3b7202fbba087fd9e65bf04d (patch) | |
tree | a790fd04d71e0684a836b0d34eeeb34836932778 /network/claws-mail-extra-plugins/claws-mail-extra-plugins.SlackBuild | |
parent | 623ff39913489a6a703e7f09064295c2faffdec1 (diff) | |
download | slackbuilds-99115d2b649df5ec3b7202fbba087fd9e65bf04d.tar.gz |
network/claws-mail-extra-plugins: Misc. script cleanups.
Diffstat (limited to 'network/claws-mail-extra-plugins/claws-mail-extra-plugins.SlackBuild')
-rw-r--r-- | network/claws-mail-extra-plugins/claws-mail-extra-plugins.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/network/claws-mail-extra-plugins/claws-mail-extra-plugins.SlackBuild b/network/claws-mail-extra-plugins/claws-mail-extra-plugins.SlackBuild index e7f4c946d9..913e101426 100644 --- a/network/claws-mail-extra-plugins/claws-mail-extra-plugins.SlackBuild +++ b/network/claws-mail-extra-plugins/claws-mail-extra-plugins.SlackBuild @@ -30,10 +30,19 @@ PRGNAM=claws-mail-extra-plugins VERSION=3.7.6 -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) export ARCH=i486 ;; + arm*) export ARCH=arm ;; + # Unless $ARCH is already set, use uname -m for all other archs: + *) export ARCH=$( uname -m ) ;; + esac +fi + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM @@ -56,6 +65,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -eu |