diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:48 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-06-04 01:10:48 -0400 |
commit | 6b073908dfac68a1485ce618f2f4cc5ac5339d11 (patch) | |
tree | 3c7b3a55d056872917bbed59568bc81508e9e798 /misc/beep/beep.SlackBuild | |
parent | dab45f1f6d074b66ab66db35601ac45a1a9dfd40 (diff) | |
download | slackbuilds-6b073908dfac68a1485ce618f2f4cc5ac5339d11.tar.gz |
misc/beep: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'misc/beep/beep.SlackBuild')
-rw-r--r-- | misc/beep/beep.SlackBuild | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/misc/beep/beep.SlackBuild b/misc/beep/beep.SlackBuild index 60dbdcc11f..00c490206b 100644 --- a/misc/beep/beep.SlackBuild +++ b/misc/beep/beep.SlackBuild @@ -9,9 +9,19 @@ PRGNAM=beep VERSION=1.2.2 -ARCH=${ARCH:-i486} BUILD=${BUILD:-2} 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 |