blob: cfc60a7aab2cbe55e5eefb9d18896dc84ad6dc8a [file] [log] [blame]
Andrew Geissler4b7c1152020-11-30 19:55:29 -06001SUMMARY = "A library for deep-packet inspection."
2DESCRIPTION = "nDPI is an open source LGPLv3 library for deep-packet \
3inspection. Based on OpenDPI it includes ntop extensions"
4
5SECTION = "libdevel"
6DEPENDS = "libpcap"
Patrick Williams213cb262021-08-07 19:21:33 -05007RDEPENDS:${PN} += " libpcap"
Andrew Geissler4b7c1152020-11-30 19:55:29 -06008LICENSE = "GPLv3"
9LIC_FILES_CHKSUM = "file://COPYING;md5=b52f2d57d10c4f7ee67a7eb9615d5d24"
10
11SRCREV = "64929a75e0a7a60d864bd25a9fd97fdf9ac892a2"
12SRC_URI = "git://github.com/ntop/nDPI.git;branch=3.4-stable \
13 file://0001-autogen.sh-not-generate-configure.patch \
14"
15
16S = "${WORKDIR}/git"
17
18inherit autotools-brokensep pkgconfig
19
Andrew Geisslerac970dd2021-02-12 15:32:45 -060020CPPFLAGS += "${SELECTED_OPTIMIZATION}"
21
Patrick Williams213cb262021-08-07 19:21:33 -050022do_configure:prepend() {
Andrew Geissler4b7c1152020-11-30 19:55:29 -060023 ${S}/autogen.sh
24}
25
26EXTRA_OEMAKE = " \
27 libdir=${libdir} \
28"