blob: b56cbdb718afd1c750118ac43f0d62c4601dbfc0 (
plain)
1 # Description: test SSL/TLS enabled services to discover supported cipher suites
2 # URL: https://github.com/rbsec/sslscan
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4
5 name=sslscan
6 version=2.0.15
7 release=1
8 source=(https://github.com/rbsec/sslscan/archive/$version/$name-$version.tar.gz)
9
10 build() {
11 cd $name-$version
12 make
13
14 install -m 755 -d $PKG/usr/bin $PKG/usr/share/man/man1
15 make install DESTDIR=$PKG MANDIR=/usr/share/man
16 }
|