summaryrefslogtreecommitdiffstats
path: root/network/pebrot
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:13:43 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-06-04 01:13:43 -0400
commitf2fd06a46af956d79002ae2109993fc42d2b8e2f (patch)
treeb7307267cd8c8fa0004e11e6658cbe9a4c2de308 /network/pebrot
parentfb9cd22b12428f073f7b969bec30da1e40eecb1e (diff)
downloadslackbuilds-f2fd06a46af956d79002ae2109993fc42d2b8e2f.tar.gz
slackbuilds-f2fd06a46af956d79002ae2109993fc42d2b8e2f.tar.xz
network/pebrot: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/pebrot')
-rw-r--r--network/pebrot/pebrot.SlackBuild11
1 files changed, 10 insertions, 1 deletions
diff --git a/network/pebrot/pebrot.SlackBuild b/network/pebrot/pebrot.SlackBuild
index 5884132380..bd16665409 100644
--- a/network/pebrot/pebrot.SlackBuild
+++ b/network/pebrot/pebrot.SlackBuild
@@ -26,10 +26,19 @@
PRGNAM=pebrot
VERSION=0.8.8
-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