wok view suricata/receipt @ rev 24085

tuxpaint: do not run kbuildsycoca4 without kde
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jul 10 14:52:46 2021 +0000 (2021-07-10)
parents be44285d590e
children 934055de50e2
line source
1 # SliTaz package receipt.
3 PACKAGE="suricata"
4 VERSION="5.0.2"
5 CATEGORY="security"
6 SHORT_DESC="Next Generation Intrusion Detection and Prevention Engine."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://suricata-ids.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://www.openinfosecfoundation.org/download/$TARBALL"
14 DEPENDS="jansson libcap-ng libhtp libnetfilter_queue libnfnetlink
15 libpcap pcre yaml"
16 BUILD_DEPENDS="jansson-dev libcap-ng-dev libhtp-dev libmnl libnet-dev
17 libnfnetlink-dev libnetfilter_queue libnetfilter_queue-dev
18 libpcap-dev rust-cargo yaml-dev zlib-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 rm -f config.h
25 ./configure $CONFIGURE_ARGS \
26 --enable-non-bundled-htp \
27 --enable-nfqueue \
28 --enable-af-packet &&
29 make &&
30 make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr
37 cp -a $install/usr/bin $fs/usr
38 }