wok view sshguard/receipt @ rev 24289

updated sshguard (2.4.0 -> 2.4.2)
author Hans-G?nter Theisgen
date Fri Jan 14 13:25:50 2022 +0100 (2022-01-14)
parents b74c4585444b
children 9bbac86a37f7
line source
1 # SliTaz package receipt.
3 PACKAGE="sshguard"
4 VERSION="2.4.2"
5 CATEGORY="security"
6 TAGS="ssh"
7 SHORT_DESC="Protects networked hosts from brute force attacks."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="BSD"
10 WEB_SITE="https://www.sshguard.net/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$PACKAGE/$VERSION/$TARBALL"
15 DEPENDS="iptables"
16 BUILD_DEPENDS=""
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --sysconfdir=/etc \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make &&
27 make install DESTDIR=$DESTDIR
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cook_copy_folders sbin
34 cook_copy_folders libexec
35 }