diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:08 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:09:08 -0400 |
commit | 55384bf57c373050a69f1d6e752ca94ea82bbeb8 (patch) | |
tree | 74f136bf3c3ae7c16431e6398530834c0b8e2d0b /libraries/meanwhile | |
parent | 993958b24ffa93068849016fa59dde05e2c67bf4 (diff) | |
download | slackbuilds-55384bf57c373050a69f1d6e752ca94ea82bbeb8.tar.gz |
libraries/meanwhile: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/meanwhile')
-rw-r--r-- | libraries/meanwhile/meanwhile.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/meanwhile/meanwhile.SlackBuild b/libraries/meanwhile/meanwhile.SlackBuild index 4354b11ed7..38a92b6472 100644 --- a/libraries/meanwhile/meanwhile.SlackBuild +++ b/libraries/meanwhile/meanwhile.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=meanwhile VERSION=1.0.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 @@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi rm -rf $PKG |