summaryrefslogtreecommitdiffstats
path: root/misc/beep/beep.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'misc/beep/beep.SlackBuild')
-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