mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-04 05:01:37 +01:00
47 lines
1.3 KiB
Plaintext
47 lines
1.3 KiB
Plaintext
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=libnids
|
|
pkgver=1.24
|
|
pkgrel=0
|
|
pkgdesc="An implementation of an E-component of Network Intrusion Detection System."
|
|
url="http://libnids.sourceforge.net"
|
|
arch="all"
|
|
license="GPL"
|
|
depends=""
|
|
depends_dev="libnet-dev libpcap-dev glib-dev"
|
|
makedepends="$depends_dev"
|
|
install=""
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--prefix=/usr \
|
|
--man=/usr/share/man \
|
|
--enable-shared \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make install_prefix=$pkgdir install
|
|
ln -s libnids.so.1.24 $pkgdir/usr/lib/libnids.so.1
|
|
}
|
|
|
|
md5sums="72d37c79c85615ffe158aa524d649610 libnids-1.24.tar.gz"
|
|
sha256sums="314b4793e0902fbf1fdb7fb659af37a3c1306ed1aad5d1c84de6c931b351d359 libnids-1.24.tar.gz"
|
|
sha512sums="2046900023e853d7dbd7061c9f47d8a8ba26320991ca34198249019c1b9a6f75010574f9f022d02976272a384cf769394c4cc3ae536fc6164716cadc4770bb53 libnids-1.24.tar.gz"
|