wok-next view sshguard/receipt @ rev 20909

Update homepages
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Aug 13 00:47:17 2018 +0300 (2018-08-13)
parents 757d032c55c7
children d5aab818505e
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=$DESTDIR install
20 }
22 genpkg_rules() {
23 copy @std
24 DEPENDS="iptables"
25 TAGS="ssh"
26 }