network/sslscan: Updated for version 2.1.3.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
1e0fa074e7
commit
55b74cc629
|
@ -6,7 +6,7 @@
|
|||
# Copyright (c) 2014 Andrew Clemons, Wellington, New Zealand
|
||||
# Copyright (c) 2015 Andrew Clemons, Leimen, Germany
|
||||
# Copyright (c) 2016-2022 Andrew Clemons, Wellington, New Zealand
|
||||
# Copyright (c) 2022-2023 Andrew Clemons, Tokyo, Japan
|
||||
# Copyright (c) 2022-2024 Andrew Clemons, Tokyo, Japan
|
||||
# All rights reserved.
|
||||
#
|
||||
# Permission to use, copy, modify, and distribute this software for
|
||||
|
@ -36,7 +36,7 @@
|
|||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=sslscan
|
||||
VERSION=${VERSION:-2.1.2}
|
||||
VERSION=${VERSION:-2.1.3}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
@ -64,6 +64,8 @@ elif [ "$ARCH" = "i686" ]; then
|
|||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
elif [ "$ARCH" = "aarch64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
fi
|
||||
|
@ -83,7 +85,7 @@ sed -i "s/^GIT_VERSION = .*$/GIT_VERSION = $VERSION/" Makefile
|
|||
STATIC=${STATIC:-yes}
|
||||
|
||||
if [ "$STATIC" = "yes" ] ; then
|
||||
OPENSSLVERSION=${OPENSSLVERSION:-c3cc0f1386b0544383a61244a4beeb762b67498f}
|
||||
OPENSSLVERSION=${OPENSSLVERSION:-openssl-3.0.12}
|
||||
tar xf "$CWD/openssl-$OPENSSLVERSION.tar.gz"
|
||||
mv "openssl-$OPENSSLVERSION" openssl
|
||||
fi
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="sslscan"
|
||||
VERSION="2.1.2"
|
||||
VERSION="2.1.3"
|
||||
HOMEPAGE="https://github.com/rbsec/sslscan"
|
||||
DOWNLOAD="https://github.com/rbsec/sslscan/archive/2.1.2/sslscan-2.1.2.tar.gz \
|
||||
https://github.com/openssl/openssl/archive/c3cc0f1386b0544383a61244a4beeb762b67498f/openssl-c3cc0f1386b0544383a61244a4beeb762b67498f.tar.gz"
|
||||
MD5SUM="5d7364b8e6840b5da234eed658564c8b \
|
||||
cc59a29b88729826211d3c738ca825a8"
|
||||
DOWNLOAD="https://github.com/rbsec/sslscan/archive/2.1.3/sslscan-2.1.3.tar.gz \
|
||||
https://github.com/openssl/openssl/archive/openssl-3.0.12/openssl-openssl-3.0.12.tar.gz"
|
||||
MD5SUM="68f3e535c7343c0bdb79796d73d51a13 \
|
||||
1729299909f326bbabad5a5a3543c69b"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in New Issue