wok view sshguard/receipt @ rev 20993

gpicview: modified TARBALL
author Hans-G?nter Theisgen
date Thu Mar 07 17:13:01 2019 +0100 (2019-03-07)
parents 5ac54b83c335
children b74c4585444b
line source
1 # SliTaz package receipt.
3 PACKAGE="sshguard"
4 VERSION="2.2.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="https://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 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/sbin $fs/usr
33 cp -a $install/usr/libexec $fs/usr
34 }