wok-next view snort/receipt @ rev 21110

subversion: update dependencies
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Jan 11 04:06:27 2019 +0200 (2019-01-11)
parents d5aab818505e
children 1b9d4ec8d5e0
line source
1 # SliTaz package receipt v2.
3 PACKAGE="snort"
4 VERSION="2.9.4"
5 CATEGORY="network"
6 SHORT_DESC="Network intrusion prevention and detection system (IDS/IPS)"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.snort.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://www.snort.org/downloads/1207"
14 BUILD_DEPENDS="pcre-dev libpcap-dev libdaq-dev libdnet-dev flex zlib-dev"
15 SPLIT="$PACKAGE-dev"
17 compile_rules() {
18 ./configure $CONFIGURE_ARGS &&
19 fix libtool &&
20 make &&
21 make DESTDIR=$install install
22 }
24 genpkg_rules() {
25 case $PACKAGE in
26 snort)
27 copy @std
28 DEPENDS="pcre libdnet libdaq"
29 ;;
30 *-dev)
31 copy @dev
32 ;;
33 esac
34 }