diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:37 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:37 -0400 |
commit | 6d6b574cd9cc8a1f29571190b22abe59ab84f688 (patch) | |
tree | 83d25705934e6bc5e1703bef1e5861b37e73bf4e /graphics | |
parent | e151834722ecd2cb35fef8b15c06dc362287a8d2 (diff) | |
download | slackbuilds-6d6b574cd9cc8a1f29571190b22abe59ab84f688.tar.gz |
graphics/scantailor: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'graphics')
-rwxr-xr-x | graphics/scantailor/scantailor.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/graphics/scantailor/scantailor.SlackBuild b/graphics/scantailor/scantailor.SlackBuild index 7032b5b139..9aa7de8d38 100755 --- a/graphics/scantailor/scantailor.SlackBuild +++ b/graphics/scantailor/scantailor.SlackBuild @@ -6,10 +6,19 @@ PRGNAM=scantailor VERSION=${VERSION:-0.9.8} -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 @@ -26,6 +35,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi rm -rf $PKG |