wok annotate 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
rev   line source
pascal@14764 1 # SliTaz package receipt.
pascal@14764 2
pascal@14764 3 PACKAGE="sshguard"
Hans-G?nter@24289 4 VERSION="2.4.2"
pascal@14764 5 CATEGORY="security"
Hans-G?nter@21968 6 TAGS="ssh"
Hans-G?nter@21968 7 SHORT_DESC="Protects networked hosts from brute force attacks."
pascal@14764 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14764 9 LICENSE="BSD"
Hans-G?nter@21968 10 WEB_SITE="https://www.sshguard.net/"
Hans-G?nter@21968 11
pascal@20520 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20520 13 WGET_URL="$SF_MIRROR/$PACKAGE/$PACKAGE/$VERSION/$TARBALL"
pascal@14764 14
pascal@14764 15 DEPENDS="iptables"
pascal@14764 16 BUILD_DEPENDS=""
pascal@14764 17
pascal@14764 18 # Rules to configure and make the package.
pascal@14764 19 compile_rules()
pascal@14764 20 {
Hans-G?nter@21968 21 ./configure \
Hans-G?nter@21968 22 --prefix=/usr \
Hans-G?nter@21968 23 --sysconfdir=/etc \
Hans-G?nter@21968 24 --mandir=/usr/share/man \
pascal@14764 25 $CONFIGURE_ARGS &&
pascal@14764 26 make &&
Hans-G?nter@24289 27 make install DESTDIR=$DESTDIR
pascal@14764 28 }
pascal@14764 29
pascal@14764 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@14764 31 genpkg_rules()
pascal@14764 32 {
Hans-G?nter@24289 33 cook_copy_folders sbin
Hans-G?nter@24289 34 cook_copy_folders libexec
pascal@14764 35 }