diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:00:56 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:00:56 -0400 |
commit | 71dde5c87d1fc0cd31acf165d9a1eb11897e8bf0 (patch) | |
tree | 02f97189684deb58a734619260f630b0d5d19d1c /desktop/cmatrix | |
parent | 531db3202019e3822019cb3ffc484fa6aa0fc836 (diff) | |
download | slackbuilds-71dde5c87d1fc0cd31acf165d9a1eb11897e8bf0.tar.gz |
desktop/cmatrix: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/cmatrix')
-rw-r--r-- | desktop/cmatrix/cmatrix.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/desktop/cmatrix/cmatrix.SlackBuild b/desktop/cmatrix/cmatrix.SlackBuild index 9e5038f2c4..e29dae46c3 100644 --- a/desktop/cmatrix/cmatrix.SlackBuild +++ b/desktop/cmatrix/cmatrix.SlackBuild @@ -5,10 +5,19 @@ PRGNAM=cmatrix VERSION=1.2a -ARCH=${ARCH:-i486} BUILD=${BUILD:-2} 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 @@ -23,6 +32,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |