diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2020-07-24 19:26:16 +1200 |
---|---|---|
committer | Andrew Clemons <andrew.clemons@gmail.com> | 2020-08-29 12:37:16 +1200 |
commit | 15e1c756ec03a56bde013c617a5bd55e6f32c77c (patch) | |
tree | 65b3bca9631f75efb41d343b4b4a02729aa649e3 /network/sslscan/sslscan.SlackBuild | |
parent | 67c26eb77b8e1ae3717d0e512ac23a37dc35a401 (diff) |
network/sslcan: Updated for version 2.0.0.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Diffstat (limited to 'network/sslscan/sslscan.SlackBuild')
-rw-r--r-- | network/sslscan/sslscan.SlackBuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/network/sslscan/sslscan.SlackBuild b/network/sslscan/sslscan.SlackBuild index 2292ef2d7b23c..198258bb7f7e0 100644 --- a/network/sslscan/sslscan.SlackBuild +++ b/network/sslscan/sslscan.SlackBuild @@ -5,7 +5,7 @@ # Copyright (c) 2010 Markus Reichelt, Aachen, DE # Copyright (c) 2014 Andrew Clemons, Wellington, New Zealand # Copyright (c) 2015 Andrew Clemons, Leimen, Germany -# Copyright (c) 2016-2019 Andrew Clemons, Wellington, New Zealand +# Copyright (c) 2016-2020 Andrew Clemons, Wellington, New Zealand # All rights reserved. # # Permission to use, copy, modify, and distribute this software for @@ -33,7 +33,7 @@ # 2014-10-23 - changed to build rbsec's fork from github PRGNAM=sslscan -VERSION=${VERSION:-1.11.13} +VERSION=${VERSION:-2.0.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -65,9 +65,9 @@ set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf $PRGNAM-$VERSION-rbsec -tar xvf $CWD/$PRGNAM-$VERSION-rbsec.tar.gz -cd $PRGNAM-$VERSION-rbsec +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION sed -i 's/^\(\.openssl.is.fresh:\).*$/\1/' Makefile sed -i "s/^GIT_VERSION = .*$/GIT_VERSION = $VERSION/" Makefile @@ -75,7 +75,7 @@ sed -i "s/^GIT_VERSION = .*$/GIT_VERSION = $VERSION/" Makefile STATIC=${STATIC:-yes} if [ "$STATIC" = "yes" ] ; then - OPENSSLVERSION=${OPENSSLVERSION:-83abb7af5cee7dd1c9ab500a10a776c586a18f1b} + OPENSSLVERSION=${OPENSSLVERSION:-72a9868fe53e01bfe912a56b56e4474ff6e0a063} tar xf "$CWD/openssl-$OPENSSLVERSION.tar.gz" mv "openssl-$OPENSSLVERSION" openssl fi |