blob: 56d0a2bc681f7c6a7589356d59207daaf5ed22e2 (
plain)
1 # Description: implementation of a Network Intrusion Detection System
2 # URL: http://libnids.sf.net
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on: glib, libnet, libpcap
5
6 name=libnids
7 version=1.24
8 release=2
9 source=(https://sourceforge.net/projects/$name/files/$name/$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 ./configure \
15 --prefix=/usr \
16 --man=/usr/share/man \
17 --enable-shared
18
19 make
20 make install_prefix="$PKG" install
21 ln -s libnids.so.1.24 $PKG/usr/lib/libnids.so.1
22 }
|