mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-22 06:02:18 +02:00
SSLScan queries SSL services, such as HTTPS, in order to determine the ciphers that are supported. SSLScan is designed to be easy, lean and fast. The output includes preferred ciphers of the SSL service, the certificate and is in Text and XML formats. https://www.titania-security.com/labs/sslscan
42 lines
939 B
Plaintext
42 lines
939 B
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=sslscan
|
|
pkgver=1.8.2
|
|
pkgrel=0
|
|
pkgdesc="Security assessment tool for SSL"
|
|
url="https://www.titania-security.com/labs/sslscan"
|
|
arch="all"
|
|
license="GPL3+"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="openssl-dev"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tgz
|
|
sslscan-makefile.patch"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm -f "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
md5sums="1a890d031996ab252efb535511bd58db sslscan-1.8.2.tgz
|
|
1aaacf4df3a6208a9aadafa1938c7126 sslscan-makefile.patch"
|