diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:09 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:16:09 -0400 |
commit | 207c6e4247dad4c63c2c3881f82db85942a6649e (patch) | |
tree | 512f73e23b7668827bfc24e2db4ee8def4fec38a /system/mlterm | |
parent | 58e3aa0a16f336e6bd7cf83d4daad8adf0c5f6de (diff) | |
download | slackbuilds-207c6e4247dad4c63c2c3881f82db85942a6649e.tar.gz |
system/mlterm: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/mlterm')
-rw-r--r-- | system/mlterm/mlterm.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/system/mlterm/mlterm.SlackBuild b/system/mlterm/mlterm.SlackBuild index b37e5ed3a6..49e308bb75 100644 --- a/system/mlterm/mlterm.SlackBuild +++ b/system/mlterm/mlterm.SlackBuild @@ -6,12 +6,21 @@ PRGNAM=mlterm VERSION=${VERSION:-3.0.0} -ARCH=${ARCH:-i486} BUILD=${BUILD:-3} TAG=${TAG:-_SBo} FONT_ENGINE=${FONT_ENGINE:-xcore} +# 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 @@ -26,6 +35,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |