contrib/libnids/Pkgfile

23 lines
533 B
Plaintext

# Description: implementation of a Network Intrusion Detection System
# URL: http://libnids.sf.net
# Maintainer: Thomas Penteker, tek at serverop dot de
# Depends on: glib, libnet, libpcap
name=libnids
version=1.25
release=1
source=(https://github.com/MITRECND/libnids/archive/$version/$name-$version.tar.gz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--man=/usr/share/man \
--enable-shared
make
make install_prefix="$PKG" install
ln -s libnids.so.1.24 $PKG/usr/lib/libnids.so.1
}