blob: 22e4d8e9ae3048841051be485d668bd33e5efe33 [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"
7RDEPENDS_${PN} += " libpcap"
8LICENSE = "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
Andrew Geissler4b7c1152020-11-30 19:55:29 -060022do_configure_prepend() {
23 ${S}/autogen.sh
24}
25
26EXTRA_OEMAKE = " \
27 libdir=${libdir} \
28"