wok view suricata/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
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 }