diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 00:59:12 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 00:59:12 -0400 |
commit | 29dc57a2d4597dbd4d8c7c870d1217f8fcb8e956 (patch) | |
tree | 85324edea3f9654d6e305017a5d5b79f05e05cb1 /academic | |
parent | c8722078137dfb9ffbf2003686ed74591d8a9a20 (diff) | |
download | slackbuilds-29dc57a2d4597dbd4d8c7c870d1217f8fcb8e956.tar.gz |
academic/mathomatic: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'academic')
-rw-r--r-- | academic/mathomatic/mathomatic.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/academic/mathomatic/mathomatic.SlackBuild b/academic/mathomatic/mathomatic.SlackBuild index 7b7f4c4a67..54e57bbead 100644 --- a/academic/mathomatic/mathomatic.SlackBuild +++ b/academic/mathomatic/mathomatic.SlackBuild @@ -7,10 +7,19 @@ PRGNAM=mathomatic VERSION=${VERSION:-15.0.8} -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 @@ -25,6 +34,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |