wok-next view sshguard/receipt @ rev 20042

pigz, pxe-kexec: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 22 20:53:07 2017 +0200 (2017-10-22)
parents f44ef80ff9e2
children 757d032c55c7
line source
1 # SliTaz package receipt.
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.sshguard.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$PACKAGE/$VERSION/$TARBALL"
12 TAGS="ssh"
14 DEPENDS="iptables"
15 BUILD_DEPENDS=""
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr \
21 --sysconfdir=/etc \
22 --mandir=/usr/share/man \
23 --with-firewall=iptables \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/sbin $fs/usr
34 }