wok-next view sshguard/receipt @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
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 }