diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:39 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:12:39 -0400 |
commit | d83b640a122804903adee67cd03c51013d1fb238 (patch) | |
tree | bbc48b12289bf154349a44ed2a854cd668f70a7c /network | |
parent | 7cda84016eedbdf4ce6126343bc431975e6ff103 (diff) | |
download | slackbuilds-d83b640a122804903adee67cd03c51013d1fb238.tar.gz |
network/efax-gtk: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r-- | network/efax-gtk/efax-gtk.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/network/efax-gtk/efax-gtk.SlackBuild b/network/efax-gtk/efax-gtk.SlackBuild index fd5b4181d8..8a1f2d1f46 100644 --- a/network/efax-gtk/efax-gtk.SlackBuild +++ b/network/efax-gtk/efax-gtk.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=efax-gtk VERSION=${VERSION:-3.2.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 @@ -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 |