diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:39 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:39 -0400 |
commit | 9f7c84d81a7228aa0cabead005242668f7343ff6 (patch) | |
tree | 5b17d12af4c141c5613957a674512c441a22b687 /office | |
parent | 56cf605fad1191a4568388874d68e33fd7313e70 (diff) | |
download | slackbuilds-9f7c84d81a7228aa0cabead005242668f7343ff6.tar.gz |
office/calcurse: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'office')
-rw-r--r-- | office/calcurse/calcurse.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/office/calcurse/calcurse.SlackBuild b/office/calcurse/calcurse.SlackBuild index e3f557c11e..4be0190b0a 100644 --- a/office/calcurse/calcurse.SlackBuild +++ b/office/calcurse/calcurse.SlackBuild @@ -26,10 +26,19 @@ PRGNAM=calcurse VERSION=${VERSION:-2.7} -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 @@ -44,6 +53,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 |