diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:08:45 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:08:45 -0400 |
commit | c8747ad223efc6808fc1beedf875ce6501304653 (patch) | |
tree | bce983585bfb22a4e84d1e54d4174d436abf729a /libraries/librtfcomp | |
parent | 4984b07657dd6eb04336138119e128f1c80fbce6 (diff) | |
download | slackbuilds-c8747ad223efc6808fc1beedf875ce6501304653.tar.gz |
libraries/librtfcomp: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/librtfcomp')
-rw-r--r-- | libraries/librtfcomp/librtfcomp.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/librtfcomp/librtfcomp.SlackBuild b/libraries/librtfcomp/librtfcomp.SlackBuild index 4cee4975d3..261fa756d0 100644 --- a/libraries/librtfcomp/librtfcomp.SlackBuild +++ b/libraries/librtfcomp/librtfcomp.SlackBuild @@ -4,10 +4,19 @@ PRGNAM=librtfcomp VERSION=${VERSION:-1.1} -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 @@ -22,6 +31,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e # Exit on most errors |