wok diff suricata/receipt @ rev 23686
sqlite: fix version (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Apr 26 16:33:37 2020 +0000 (2020-04-26) |
parents | be44285d590e |
children | 934055de50e2 |
line diff
1.1 --- a/suricata/receipt Thu Apr 11 15:01:35 2019 +0200 1.2 +++ b/suricata/receipt Sun Apr 26 16:33:37 2020 +0000 1.3 @@ -1,33 +1,38 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="suricata" 1.7 -VERSION="4.1.3" 1.8 +VERSION="5.0.2" 1.9 CATEGORY="security" 1.10 SHORT_DESC="Next Generation Intrusion Detection and Prevention Engine." 1.11 MAINTAINER="erjo@slitaz.org" 1.12 LICENSE="GPL2" 1.13 -WEB_SITE="http://www.openinfosecfoundation.org/" 1.14 +WEB_SITE="https://suricata-ids.org/" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 WGET_URL="https://www.openinfosecfoundation.org/download/$TARBALL" 1.18 1.19 -DEPENDS="libhtp libcap-ng libpcap libnfnetlink libnetfilter_queue yaml pcre" 1.20 -BUILD_DEPENDS="zlib-dev yaml-dev libnet-dev libpcap-dev libcap-ng-dev libmnl \ 1.21 - libnfnetlink-dev libnetfilter_queue-dev libnetfilter_queue libhtp-dev" 1.22 +DEPENDS="jansson libcap-ng libhtp libnetfilter_queue libnfnetlink 1.23 + libpcap pcre yaml" 1.24 +BUILD_DEPENDS="jansson-dev libcap-ng-dev libhtp-dev libmnl libnet-dev 1.25 + libnfnetlink-dev libnetfilter_queue libnetfilter_queue-dev 1.26 + libpcap-dev rust-cargo yaml-dev zlib-dev" 1.27 1.28 # Rules to configure and make the package. 1.29 compile_rules() 1.30 { 1.31 rm -f config.h 1.32 - ./configure $CONFIGURE_ARGS \ 1.33 - --enable-non-bundled-htp \ 1.34 - --enable-nfqueue \ 1.35 - --enable-af-packet \ 1.36 - && make && make install 1.37 + 1.38 + ./configure $CONFIGURE_ARGS \ 1.39 + --enable-non-bundled-htp \ 1.40 + --enable-nfqueue \ 1.41 + --enable-af-packet && 1.42 + make && 1.43 + make install 1.44 } 1.45 1.46 # Rules to gen a SliTaz package suitable for Tazpkg. 1.47 genpkg_rules() 1.48 { 1.49 mkdir -p $fs/usr 1.50 - cp -a $install/usr/bin $fs/usr 1.51 + cp -a $install/usr/bin $fs/usr 1.52 }