diff options
author | David Somero | 2010-06-04 07:12:51 +0200 |
---|---|---|
committer | David Somero | 2010-06-04 07:12:51 +0200 |
commit | 522240b10e2f4a8e1c514205c1e10c11ccf70427 (patch) | |
tree | d0424678899f5aa2ffa49d7db641af8f927a7804 /network/greenbone-security-assistant | |
parent | 8df84039e19f49f35a5524229cec8e496041e72a (diff) | |
download | slackbuilds-522240b10e2f4a8e1c514205c1e10c11ccf70427.tar.gz |
network/greenbone-security-assistant: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/greenbone-security-assistant')
-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 015fbeb26c..95393b66b6 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 |