diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:01 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:05:01 -0400 |
commit | c2882ef239db499c216c872846574e5c71e06586 (patch) | |
tree | 52623e7f6e1f2db7f7d60c5885d55ac7a48e69b7 /games/xcowsay | |
parent | 46fc20fbcc0a1c2670f1cc7beeda886a446852b1 (diff) | |
download | slackbuilds-c2882ef239db499c216c872846574e5c71e06586.tar.gz |
games/xcowsay: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'games/xcowsay')
-rw-r--r-- | games/xcowsay/xcowsay.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/games/xcowsay/xcowsay.SlackBuild b/games/xcowsay/xcowsay.SlackBuild index 766b21394e..83c95b0156 100644 --- a/games/xcowsay/xcowsay.SlackBuild +++ b/games/xcowsay/xcowsay.SlackBuild @@ -6,10 +6,19 @@ PRGNAM=xcowsay VERSION=${VERSION:-1.2} -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 @@ -24,6 +33,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |