diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:02:57 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:02:57 -0400 |
commit | 46e573edeff789129e944d7d0d66e90d34848139 (patch) | |
tree | 4d2c5fa778a968a5c2d0e74e2deb28fcfa8ce191 /development/ht | |
parent | 2fb06dbb988074a1b281fc92c0a3b6f7bb6edc37 (diff) | |
download | slackbuilds-46e573edeff789129e944d7d0d66e90d34848139.tar.gz |
development/ht: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development/ht')
-rw-r--r-- | development/ht/ht.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/development/ht/ht.SlackBuild b/development/ht/ht.SlackBuild index 103d5d45f9..6895da637d 100644 --- a/development/ht/ht.SlackBuild +++ b/development/ht/ht.SlackBuild @@ -6,10 +6,19 @@ PRGNAM=ht VERSION=${VERSION:-2.0.18} -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 |