diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:13:02 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:13:02 -0400 |
commit | ed3667f3dd17a368b06f4b950b5982c0043e6e5a (patch) | |
tree | a25f8b5ef3b8fca272a27f1d29447f7c2427e664 /network/isync/isync.SlackBuild | |
parent | 43a0d8636042eb6a32a1b48ef94510d33a39cc51 (diff) | |
download | slackbuilds-ed3667f3dd17a368b06f4b950b5982c0043e6e5a.tar.gz |
network/isync: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/isync/isync.SlackBuild')
-rw-r--r-- | network/isync/isync.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/network/isync/isync.SlackBuild b/network/isync/isync.SlackBuild index 8789cf8e14..153a1944d8 100644 --- a/network/isync/isync.SlackBuild +++ b/network/isync/isync.SlackBuild @@ -31,10 +31,19 @@ PRGNAM=isync VERSION=${VERSION:-1.0.4} -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 @@ -49,6 +58,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 |