2022-05-14 01:43:47 +00:00
|
|
|
SUMMARY = "HTTP/2 C Library and tools"
|
|
|
|
HOMEPAGE = "https://nghttp2.org/"
|
|
|
|
SECTION = "libs"
|
|
|
|
LICENSE = "MIT"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=764abdf30b2eadd37ce47dcbce0ea1ec"
|
|
|
|
|
|
|
|
SRC_URI = "https://github.com/nghttp2/nghttp2/releases/download/v${PV}/nghttp2-${PV}.tar.bz2"
|
|
|
|
SRC_URI[md5sum] = "2bca98caef4b5c27d5bdc4732f36a5d6"
|
|
|
|
SRC_URI[sha256sum] = "07c89947438f0254c2f4300a884813431d678cfb2e699d9aacddc28c23e2a685"
|
|
|
|
|
2022-05-14 03:59:51 +00:00
|
|
|
DEPENDS = "libxml2 openssl zlib jansson cunit c-ares jemalloc"
|
2022-05-14 01:43:47 +00:00
|
|
|
|
2022-05-20 03:39:40 +00:00
|
|
|
inherit cmake pythonnative python-dir
|
|
|
|
|
|
|
|
do_install_append() {
|
|
|
|
install -d ${D}${libdir}/pkgconfig
|
|
|
|
install -m 0755 ${B}/lib/libnghttp2.pc ${D}${libdir}/pkgconfig/libnghttp2.pc
|
|
|
|
}
|