diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 00:58:58 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 00:58:58 -0400 |
commit | 8b810b7d2a5e4b50c4f5788f60b0aa6a30481a4a (patch) | |
tree | d1bcb242a55964876b000021fb362d227c84d223 /academic/gcompris | |
parent | 971ab5c2a3807c78120925d51533ddfbe0acd9aa (diff) | |
download | slackbuilds-8b810b7d2a5e4b50c4f5788f60b0aa6a30481a4a.tar.gz |
academic/gcompris: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'academic/gcompris')
-rw-r--r-- | academic/gcompris/gcompris.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/academic/gcompris/gcompris.SlackBuild b/academic/gcompris/gcompris.SlackBuild index 667d4005de..436d6d7b60 100644 --- a/academic/gcompris/gcompris.SlackBuild +++ b/academic/gcompris/gcompris.SlackBuild @@ -34,10 +34,19 @@ PRGNAM=gcompris VERSION=8.4.12 -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 @@ -52,6 +61,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |