diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:13 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:03:13 -0400 |
commit | 3d80e5a49ea41533a4254ab68fbc2a1d96e70ef1 (patch) | |
tree | c6f1749e4aca2f696e71cfaa8348d485d79fd873 | |
parent | 6ad9320a716fcb41b231d7589574e4e88bab6e5c (diff) | |
download | slackbuilds-3d80e5a49ea41533a4254ab68fbc2a1d96e70ef1.tar.gz |
development/orc: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rw-r--r-- | development/orc/orc.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/development/orc/orc.SlackBuild b/development/orc/orc.SlackBuild index 11e47f7a97..4ec7c1e184 100644 --- a/development/orc/orc.SlackBuild +++ b/development/orc/orc.SlackBuild @@ -6,10 +6,19 @@ PRGNAM=orc VERSION=${VERSION:-0.4.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 @@ -24,6 +33,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |