wok-next view libnids/receipt @ rev 21715

Up cookutils (1146)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 28 07:53:22 2020 +0000 (2020-07-28)
parents d43bf7aae921
children
line source
1 # SliTaz package receipt.
3 PACKAGE="libnids"
4 VERSION="1.24"
5 CATEGORY="development"
6 SHORT_DESC="An E-component of Network Intrusion Detection System"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://libnids.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 #https://sourceforge.net/projects/libnids/files/libnids/1.24/libnids-1.24.tar.gz
15 BUILD_DEPENDS="libpcap-dev glib-dev libnet-dev"
17 compile_rules() {
18 sed -i "s|^install_prefix.*|install_prefix = $install|" src/Makefile*
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$install install
25 }
27 genpkg_rules() {
28 cp -a $install/* $fs/
29 }