diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:32 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:32 -0400 |
commit | bcc93b140a0b96ddd3233ea0314b52ac682ac44d (patch) | |
tree | 2f04d2ab143ce60607d191ff7245ee2f8b5899c6 /graphics/povray | |
parent | 988db4c432a16cfa9184db4028ea1980174f8061 (diff) | |
download | slackbuilds-bcc93b140a0b96ddd3233ea0314b52ac682ac44d.tar.gz |
graphics/povray: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'graphics/povray')
-rw-r--r-- | graphics/povray/povray.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/graphics/povray/povray.SlackBuild b/graphics/povray/povray.SlackBuild index 1bda7c90ab..ac77e1e034 100644 --- a/graphics/povray/povray.SlackBuild +++ b/graphics/povray/povray.SlackBuild @@ -10,10 +10,19 @@ PRGNAM=povray VERSION=3.6.1 # The Source tarball does not contain the 'minor' version number in its name: SRCVERSION=3.6 -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 @@ -31,6 +40,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |