wok diff snort/receipt @ rev 24178
created recipe for perl-file-sharedir-install
author | Hans-G?nter Theisgen |
---|---|
date | Fri Dec 31 06:33:57 2021 +0100 (2021-12-31) |
parents | a78610b2eb47 |
children | 83b97236db32 |
line diff
1.1 --- a/snort/receipt Mon Jan 21 12:26:11 2019 +0100 1.2 +++ b/snort/receipt Fri Dec 31 06:33:57 2021 +0100 1.3 @@ -1,22 +1,24 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="snort" 1.7 -VERSION="2.9.4" 1.8 +VERSION="2.9.16" 1.9 CATEGORY="network" 1.10 SHORT_DESC="Network intrusion prevention and detection system (IDS/IPS)." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 LICENSE="GPL2" 1.13 +WEB_SITE="https://www.snort.org/" 1.14 + 1.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.16 -WEB_SITE="https://www.snort.org/" 1.17 -WGET_URL="https://www.snort.org/downloads/1207" 1.18 +WGET_URL="${WEB_SITE}downloads/$PACKAGE/$TARBALL" 1.19 1.20 -DEPENDS="pcre libdnet libdaq" 1.21 -BUILD_DEPENDS="pcre-dev libpcap-dev libdaq-dev libdnet-dev wget flex" 1.22 +DEPENDS="libdaq libdnet openssl pcre" 1.23 +BUILD_DEPENDS="flex libdaq-dev libdnet-dev libpcap-dev luajit-dev 1.24 + openssl-dev pcre-dev" 1.25 1.26 # Rules to configure and make the package. 1.27 compile_rules() 1.28 { 1.29 - ./configure \ 1.30 + ./configure \ 1.31 $CONFIGURE_ARGS && 1.32 make && 1.33 make DESTDIR=$DESTDIR install 1.34 @@ -25,9 +27,11 @@ 1.35 # Rules to gen a SliTaz package suitable for Tazpkg. 1.36 genpkg_rules() 1.37 { 1.38 - mkdir -p $fs/usr/ 1.39 - cp -a $install/usr/bin $fs/usr 1.40 - cp -a $install/usr/lib $fs/usr 1.41 - rm -f $fs/usr/lib/*/*a 1.42 - rm -rf $fs/usr/lib/pkgconfig 1.43 + mkdir -p $fs/usr 1.44 + 1.45 + cp -a $install/usr/bin $fs/usr 1.46 + cp -a $install/usr/lib $fs/usr 1.47 + 1.48 + rm -f $fs/usr/lib/*/*a 1.49 + rm -rf $fs/usr/lib/pkgconfig 1.50 }