diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:17:18 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:17:18 -0400 |
commit | f91394286d8ea7f07d3a278a5a2ba3d084c1b4fa (patch) | |
tree | 1b7a6f58e62e5aacaab8f3b9f0789421662e7698 /system/yeahconsole | |
parent | 7729a4ef2e387dbe9d96787b40a4d1e65ea889db (diff) | |
download | slackbuilds-f91394286d8ea7f07d3a278a5a2ba3d084c1b4fa.tar.gz |
system/yeahconsole: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/yeahconsole')
-rw-r--r-- | system/yeahconsole/yeahconsole.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/system/yeahconsole/yeahconsole.SlackBuild b/system/yeahconsole/yeahconsole.SlackBuild index d24f7ce245..eda4434a3f 100644 --- a/system/yeahconsole/yeahconsole.SlackBuild +++ b/system/yeahconsole/yeahconsole.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=yeahconsole VERSION=${VERSION:-0.3.4} -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 @@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |