17 lines
440 B
Plaintext
17 lines
440 B
Plaintext
# Description: test SSL/TLS enabled services to discover supported cipher suites
|
|
# URL: https://github.com/rbsec/sslscan
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
name=sslscan
|
|
version=2.0.16
|
|
release=1
|
|
source=(https://github.com/rbsec/sslscan/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
make
|
|
|
|
install -m 755 -d $PKG/usr/bin $PKG/usr/share/man/man1
|
|
make install DESTDIR=$PKG MANDIR=/usr/share/man
|
|
}
|