wok-next view suricata/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents 342b30daff76
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="suricata"
4 VERSION="1.1.1"
5 CATEGORY="security"
6 SHORT_DESC="Next Generation Intrusion Detection and Prevention Engine"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://oisf.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://www.openinfosecfoundation.org/download/$TARBALL" # FIXME
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 pcre-dev"
17 compile_rules() {
18 rm -f config.h
19 ./configure \
20 --enable-non-bundled-htp \
21 --enable-nfqueue \
22 --enable-af-packet \
23 $CONFIGURE_ARGS &&
24 fix libtool &&
25 make &&
26 make install
27 }
29 genpkg_rules() {
30 copy @std
31 DEPENDS="libcap-ng libhtp libnetfilter_queue libnfnetlink libpcap libpcre \
32 yaml"
33 }