diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:01:07 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:01:07 -0400 |
commit | a43a1b33a87db3fb83046f701ed64789d9dddf52 (patch) | |
tree | 8df334a5024645c566f5371b70660cf415cf6d50 /desktop/hsetroot | |
parent | 6fcf68f04dc25fa42d4ef932a73c61e3633e7be4 (diff) | |
download | slackbuilds-a43a1b33a87db3fb83046f701ed64789d9dddf52.tar.gz |
desktop/hsetroot: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/hsetroot')
-rw-r--r-- | desktop/hsetroot/hsetroot.SlackBuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/desktop/hsetroot/hsetroot.SlackBuild b/desktop/hsetroot/hsetroot.SlackBuild index 91cbb0533c..28fd1dbeeb 100644 --- a/desktop/hsetroot/hsetroot.SlackBuild +++ b/desktop/hsetroot/hsetroot.SlackBuild @@ -26,10 +26,19 @@ PRGNAM=hsetroot VERSION=${VERSION:-1.0.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 @@ -44,6 +53,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e # Exit on most errors |