mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-16 19:02:13 +00:00
This patch updates SRC_URIs using git to include branch=master if no branch is set and also to use protocol=https for github urls as generated by the conversion script in OE-Core. Signed-off-by: Armin Kuster <akuster808@gmail.com>
30 lines
773 B
BlitzBasic
30 lines
773 B
BlitzBasic
SUMMARY = "A library for deep-packet inspection."
|
|
DESCRIPTION = "nDPI is an open source LGPLv3 library for deep-packet \
|
|
inspection. Based on OpenDPI it includes ntop extensions"
|
|
|
|
SECTION = "libdevel"
|
|
DEPENDS = "libpcap"
|
|
RDEPENDS_${PN} += " libpcap"
|
|
LICENSE = "GPLv3"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b52f2d57d10c4f7ee67a7eb9615d5d24"
|
|
|
|
SRCREV = "64929a75e0a7a60d864bd25a9fd97fdf9ac892a2"
|
|
SRC_URI = "git://github.com/ntop/nDPI.git;branch=3.4-stable;protocol=https \
|
|
file://0001-autogen.sh-not-generate-configure.patch \
|
|
file://CVE-2021-36082.patch \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools-brokensep pkgconfig
|
|
|
|
CPPFLAGS += "${SELECTED_OPTIMIZATION}"
|
|
|
|
do_configure_prepend() {
|
|
${S}/autogen.sh
|
|
}
|
|
|
|
EXTRA_OEMAKE = " \
|
|
libdir=${libdir} \
|
|
"
|