24 lines
622 B
Bash
24 lines
622 B
Bash
# Template file for 'ssh-audit'
|
|
pkgname=ssh-audit
|
|
version=2.4.0
|
|
revision=1
|
|
build_style="python3-module"
|
|
hostmakedepends="python3-setuptools"
|
|
depends="python3"
|
|
checkdepends="python3-pytest"
|
|
short_desc="SSH server & client auditing"
|
|
maintainer="Andrew Benson <abenson+void@gmail.com>"
|
|
license="MIT"
|
|
homepage="https://github.com/jtesta/ssh-audit"
|
|
distfiles="https://github.com/jtesta/ssh-audit/archive/v${version}.tar.gz"
|
|
checksum=87c634171d3e0c69297fceeb98dead9a816d5d56c8dcd138f8411fdf58085b6f
|
|
python_version=3
|
|
|
|
do_check() {
|
|
PYTHONPATH=build/lib python3 -m pytest
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
vman ssh-audit.1
|
|
}
|