diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:02:17 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:02:17 -0400 |
commit | 53f6fda77ed6b4c25ee8e529a946cefb32362208 (patch) | |
tree | 9ca9d4549ec993f679bfb511c7a2281fa2609519 | |
parent | d2376d393362ebe637542f5a695979d2c917c22f (diff) | |
download | slackbuilds-53f6fda77ed6b4c25ee8e529a946cefb32362208.tar.gz |
desktop/xonclock: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
-rwxr-xr-x | desktop/xonclock/xonclock.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/desktop/xonclock/xonclock.SlackBuild b/desktop/xonclock/xonclock.SlackBuild index 7cf0d5ac50..0cc3f04ac1 100755 --- a/desktop/xonclock/xonclock.SlackBuild +++ b/desktop/xonclock/xonclock.SlackBuild @@ -28,10 +28,19 @@ PRGNAM=xonclock VERSION=${VERSION:-0.0.9.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 @@ -46,6 +55,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e |