diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:15 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:14:15 -0400 |
commit | 184b86168398aa74acca555628724ed5dacbe434 (patch) | |
tree | 934ecb43024e1a7795c851e27f7eb724f28df703 /network/sylpheed | |
parent | 8bc0c8685518f214752706ba35d04f5fcdcd2581 (diff) | |
download | slackbuilds-184b86168398aa74acca555628724ed5dacbe434.tar.gz |
network/sylpheed: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/sylpheed')
-rw-r--r-- | network/sylpheed/sylpheed.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/network/sylpheed/sylpheed.SlackBuild b/network/sylpheed/sylpheed.SlackBuild index 6074c74b33..4f4e4e4b0b 100644 --- a/network/sylpheed/sylpheed.SlackBuild +++ b/network/sylpheed/sylpheed.SlackBuild @@ -27,10 +27,19 @@ PRGNAM=sylpheed VERSION=${VERSION:-3.0.2} -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 @@ -50,6 +59,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi rm -rf $PKG |