wok-next annotate sshguard/receipt @ rev 21013

Small updates
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Oct 14 05:29:23 2018 +0300 (2018-10-14)
parents 757d032c55c7
children d5aab818505e
rev   line source
al@20534 1 # SliTaz package receipt v2.
pascal@14764 2
pascal@14764 3 PACKAGE="sshguard"
pascal@20037 4 VERSION="2.0.0"
pascal@14764 5 CATEGORY="security"
pascal@14764 6 SHORT_DESC="Protects networked hosts from brute force attacks"
pascal@14764 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14764 8 LICENSE="BSD"
al@20909 9 WEB_SITE="https://www.sshguard.net/"
al@20534 10
pascal@20037 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@20534 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@14764 13
al@20534 14 compile_rules() {
al@20534 15 ./configure \
pascal@14764 16 --with-firewall=iptables \
pascal@14764 17 $CONFIGURE_ARGS &&
pascal@14764 18 make &&
pascal@14764 19 make DESTDIR=$DESTDIR install
pascal@14764 20 }
pascal@14764 21
al@20534 22 genpkg_rules() {
al@20534 23 copy @std
al@20534 24 DEPENDS="iptables"
al@20534 25 TAGS="ssh"
pascal@14764 26 }