summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
author David Somero2010-06-04 07:10:48 +0200
committer David Somero2010-06-04 07:10:48 +0200
commit6b073908dfac68a1485ce618f2f4cc5ac5339d11 (patch)
tree3c7b3a55d056872917bbed59568bc81508e9e798 /misc
parentdab45f1f6d074b66ab66db35601ac45a1a9dfd40 (diff)
downloadslackbuilds-6b073908dfac68a1485ce618f2f4cc5ac5339d11.tar.gz
misc/beep: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'misc')
-rw-r--r--misc/beep/beep.SlackBuild12
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