wok view suricata/receipt @ rev 19683

Add: mate (a package to install all MATE desktop at once)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 12 00:43:16 2017 +0100 (2017-02-12)
parents 851f99758f5b
children be44285d590e
line source
1 # SliTaz package receipt.
3 PACKAGE="suricata"
4 VERSION="1.1.1"
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="http://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 cd $src
21 rm -f config.h
22 ./configure $CONFIGURE_ARGS \
23 --enable-non-bundled-htp \
24 --enable-nfqueue \
25 --enable-af-packet \
26 && make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 }