diff options
Diffstat (limited to 'network/greenbone-security-assistant/greenbone-security-assistant.SlackBuild')
-rw-r--r-- | network/greenbone-security-assistant/greenbone-security-assistant.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/network/greenbone-security-assistant/greenbone-security-assistant.SlackBuild b/network/greenbone-security-assistant/greenbone-security-assistant.SlackBuild index 015fbeb26ced..95393b66b6f0 100644 --- a/network/greenbone-security-assistant/greenbone-security-assistant.SlackBuild +++ b/network/greenbone-security-assistant/greenbone-security-assistant.SlackBuild @@ -25,10 +25,19 @@ PRGNAM=greenbone-security-assistant VERSION=${VERSION:-1.0.0_beta5} SRCVER=$(echo $VERSION | tr _ -) -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 |