diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2022-04-17 00:01:35 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-04-24 01:47:13 +0700 |
commit | b6040044360269a33a70db6b9e3e9ef597c359a2 (patch) | |
tree | df633070f8ef0a97fa72e81dc68b97115fac0d46 /network/sslscan/sslscan.SlackBuild | |
parent | ebc1bf9197036b657b2022bbd263436e36d283de (diff) |
network/sslscan: Updated for version 2.0.13.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/sslscan/sslscan.SlackBuild')
-rw-r--r-- | network/sslscan/sslscan.SlackBuild | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/network/sslscan/sslscan.SlackBuild b/network/sslscan/sslscan.SlackBuild index f8a8e7b6b750b..32ab1246734b3 100644 --- a/network/sslscan/sslscan.SlackBuild +++ b/network/sslscan/sslscan.SlackBuild @@ -35,7 +35,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=sslscan -VERSION=${VERSION:-2.0.12} +VERSION=${VERSION:-2.0.13} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -48,9 +48,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -85,7 +82,7 @@ sed -i "s/^GIT_VERSION = .*$/GIT_VERSION = $VERSION/" Makefile STATIC=${STATIC:-yes} if [ "$STATIC" = "yes" ] ; then - OPENSSLVERSION=${OPENSSLVERSION:-0418e993c717a6863f206feaa40673a261de7395} + OPENSSLVERSION=${OPENSSLVERSION:-564a8d442cbd8ce68d452ff2e8a58c0aea6b0632} tar xf "$CWD/openssl-$OPENSSLVERSION.tar.gz" mv "openssl-$OPENSSLVERSION" openssl fi @@ -112,6 +109,7 @@ make install DESTDIR=$PKG find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true +find $PKG/usr/man -type f -exec chmod 0644 {} \; find $PKG/usr/man -type f -exec gzip -9 {} \; mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |