diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:47 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:15:47 -0400 |
commit | 4faa4b8ea26149895d2d76893ba5f188d21ca81b (patch) | |
tree | 15d359c21127f192406e1dd1c11841221e4b075b /system/gsmartcontrol | |
parent | f60cc51e58dd9ad056f905fa96cd2ad28706f173 (diff) | |
download | slackbuilds-4faa4b8ea26149895d2d76893ba5f188d21ca81b.tar.gz |
system/gsmartcontrol: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/gsmartcontrol')
-rw-r--r-- | system/gsmartcontrol/gsmartcontrol.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/system/gsmartcontrol/gsmartcontrol.SlackBuild b/system/gsmartcontrol/gsmartcontrol.SlackBuild index 7bf57b3637..d2281a368b 100644 --- a/system/gsmartcontrol/gsmartcontrol.SlackBuild +++ b/system/gsmartcontrol/gsmartcontrol.SlackBuild @@ -24,10 +24,19 @@ PRGNAM=gsmartcontrol VERSION=0.8.5 -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 |