wok-next view sshguard/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents 7506b35e1c6f
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="sshguard"
4 VERSION="2.0.0"
5 CATEGORY="security"
6 SHORT_DESC="Protects networked hosts from brute force attacks"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://www.sshguard.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 compile_rules() {
15 ./configure \
16 --with-firewall=iptables \
17 $CONFIGURE_ARGS &&
18 make &&
19 make DESTDIR=$install install
20 }
22 genpkg_rules() {
23 copy @std
24 DEPENDS="iptables"
25 TAGS="ssh"
26 }