mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-15 23:05:34 +01:00
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
32 lines
1.1 KiB
BlitzBasic
32 lines
1.1 KiB
BlitzBasic
DESCRIPTION = "Modern C++ network programming libraries."
|
|
|
|
# This library provides general purpose network functionality such as
|
|
# socket communication to agent libraries. It was designed to be merged
|
|
# into boost at some point and follows similar header library approach
|
|
# for most functionality.
|
|
|
|
SECTION = "libs"
|
|
LICENSE = "BSL-1.0 & MIT & Python-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE_1_0.txt;md5=e4224ccaecb14d942c71d31bef20d78c"
|
|
PV = "0.13.0"
|
|
|
|
SRCREV = "31d304cdf52b485f465ada433d8905171b61cbff"
|
|
SRC_URI = "\
|
|
git://github.com/cpp-netlib/cpp-netlib.git;protocol=https;branch=0.13-release \
|
|
file://a53f123040998744602f190944464af0e159ea19.patch \
|
|
"
|
|
|
|
|
|
inherit cmake pkgconfig
|
|
|
|
DEPENDS = "zlib boost openssl"
|
|
|
|
EXTRA_OECMAKE:append = " -DCPP-NETLIB_BUILD_TESTS=OFF -DCPP-NETLIB_BUILD_EXAMPLES=OFF"
|
|
|
|
do_install:append() {
|
|
sed -i -e 's|${RECIPE_SYSROOT}||g' ${D}${libdir}/cmake/cppnetlib/cppnetlibConfig.cmake
|
|
sed -i -e 's|${RECIPE_SYSROOT}||g' ${D}${libdir}/cmake/cppnetlib/cppnetlibTargets-noconfig.cmake
|
|
}
|
|
|
|
SKIP_RECIPE[cpp-netlib] ?= "Does not work with boost >= 1.87"
|