diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:56 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:56 -0400 |
commit | 1b4895cb09fb53c8ebb820e210b30ab6951b0234 (patch) | |
tree | a3705093e95a71ebeb1155c4ccefe557b1122fc8 /network/hylafax | |
parent | 312120bb77140a2a609048bc597549e4bce798f5 (diff) | |
download | slackbuilds-1b4895cb09fb53c8ebb820e210b30ab6951b0234.tar.gz |
network/hylafax: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/hylafax')
-rw-r--r-- | network/hylafax/hylafax.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/network/hylafax/hylafax.SlackBuild b/network/hylafax/hylafax.SlackBuild index 245138e17c..d7bfcba0db 100644 --- a/network/hylafax/hylafax.SlackBuild +++ b/network/hylafax/hylafax.SlackBuild @@ -28,10 +28,19 @@ PRGNAM=hylafax VERSION=${VERSION:-6.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 @@ -46,6 +55,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |