mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-01 06:42:01 +01:00
45 lines
1.0 KiB
Plaintext
45 lines
1.0 KiB
Plaintext
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
pkgname=ndpi
|
|
_pkgreal=nDPI
|
|
pkgver=4.8
|
|
pkgrel=0
|
|
pkgdesc="Open Source Deep Packet Inspection Software Toolkit"
|
|
url="https://github.com/ntop/nDPI"
|
|
# armhf test fail without apparent cause
|
|
# s390x test hangs (big-endian)
|
|
arch="all !armhf !armv7 !s390x"
|
|
license="GPL-3.0-only"
|
|
makedepends="autoconf automake libpcap-dev libtool json-c-dev"
|
|
subpackages="$pkgname-dev"
|
|
options="!check" # currently broken
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/ntop/nDPI/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgreal-$pkgver
|
|
|
|
prepare() {
|
|
default_prepare
|
|
./autogen.sh
|
|
}
|
|
|
|
build() {
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
check() {
|
|
# fails on those two
|
|
rm tests/pcap/nintendo.pcap
|
|
rm tests/pcap/skype-conference-call.pcap
|
|
make check
|
|
}
|
|
|
|
sha512sums="
|
|
f76eb99a83262a6d148509c7ce457b9af35dce3657c8191405ba15999b25c323ee0bee2907b0a7e6ba6f12a63182fde839e0098a4e8e0f63999e600526f3036b ndpi-4.8.tar.gz
|
|
"
|