wok view suricata/receipt @ rev 23621

updated ruby and ruby-dev (2.6.4 -> 2.7.1)
author Hans-G?nter Theisgen
date Tue Apr 14 15:51:31 2020 +0100 (2020-04-14)
parents fb2225fbacf4
children f4cce61747a2
line source
1 # SliTaz package receipt.
3 PACKAGE="suricata"
4 VERSION="4.1.3"
5 CATEGORY="security"
6 SHORT_DESC="Next Generation Intrusion Detection and Prevention Engine."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.openinfosecfoundation.org/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://www.openinfosecfoundation.org/download/$TARBALL"
13 DEPENDS="libhtp libcap-ng libpcap libnfnetlink libnetfilter_queue yaml pcre"
14 BUILD_DEPENDS="zlib-dev yaml-dev libnet-dev libpcap-dev libcap-ng-dev libmnl \
15 libnfnetlink-dev libnetfilter_queue-dev libnetfilter_queue libhtp-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 rm -f config.h
21 ./configure $CONFIGURE_ARGS \
22 --enable-non-bundled-htp \
23 --enable-nfqueue \
24 --enable-af-packet \
25 && make && make 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/bin $fs/usr
33 }