wok annotate sshguard/receipt @ rev 21909

updated sic (1.1 -> 1.2)
author Hans-G?nter Theisgen
date Fri Oct 04 15:39:32 2019 +0100 (2019-10-04)
parents 5ac54b83c335
children b74c4585444b
rev   line source
pascal@14764 1 # SliTaz package receipt.
pascal@14764 2
pascal@14764 3 PACKAGE="sshguard"
pascal@20520 4 VERSION="2.2.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"
pascal@20520 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20669 10 WEB_SITE="https://www.sshguard.net/"
pascal@20520 11 WGET_URL="$SF_MIRROR/$PACKAGE/$PACKAGE/$VERSION/$TARBALL"
pascal@17141 12 TAGS="ssh"
pascal@14764 13
pascal@14764 14 DEPENDS="iptables"
pascal@14764 15 BUILD_DEPENDS=""
pascal@14764 16
pascal@14764 17 # Rules to configure and make the package.
pascal@14764 18 compile_rules()
pascal@14764 19 {
pascal@14764 20 ./configure --prefix=/usr \
pascal@14764 21 --sysconfdir=/etc \
pascal@14764 22 --mandir=/usr/share/man \
pascal@14764 23 $CONFIGURE_ARGS &&
pascal@14764 24 make &&
pascal@14764 25 make DESTDIR=$DESTDIR install
pascal@14764 26 }
pascal@14764 27
pascal@14764 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@14764 29 genpkg_rules()
pascal@14764 30 {
pascal@14764 31 mkdir -p $fs/usr
pascal@14764 32 cp -a $install/usr/sbin $fs/usr
pascal@20520 33 cp -a $install/usr/libexec $fs/usr
pascal@14764 34 }