wok-next view snort/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents 5ffe59e2de3a
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="snort"
4 VERSION="2.9.16"
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="flex libdaq-dev libdnet-dev libpcap-dev pcre-dev zlib-dev"
15 SPLIT="$PACKAGE-dev"
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS &&
20 fix libtool &&
21 make &&
22 make DESTDIR=$install install
23 }
25 genpkg_rules()
26 {
27 case $PACKAGE in
28 snort)
29 copy @std
30 DEPENDS="libdaq libdnet pcre"
31 ;;
32 *-dev)
33 copy @dev
34 ;;
35 esac
36 }