diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:07 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:07 -0400 |
commit | a3dfdf8808ae81b0b80fdb034ddefdf3089c68eb (patch) | |
tree | 74506d0f7c9e5f29a6e081d0de7c8e6b8cfd7579 /libraries/pyorbit | |
parent | 653f8b92ec61db996d1cd587d5961d7788491ad6 (diff) | |
download | slackbuilds-a3dfdf8808ae81b0b80fdb034ddefdf3089c68eb.tar.gz |
libraries/pyorbit: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/pyorbit')
-rw-r--r-- | libraries/pyorbit/pyorbit.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libraries/pyorbit/pyorbit.SlackBuild b/libraries/pyorbit/pyorbit.SlackBuild index b0ce799ccd..5add939819 100644 --- a/libraries/pyorbit/pyorbit.SlackBuild +++ b/libraries/pyorbit/pyorbit.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=pyorbit VERSION=2.24.0 -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 set -eu |