Files
openwrt_yocto/meta-openembedded/meta-networking/recipes-support/libcpr/libcpr_1.10.5.bb
T
francis.wang 4c86c082a2 Initial commit: OpenWrt-Yocto monorepo
Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and
meta-openwrt into a single repository.

Components:
- poky/             Yocto core framework (BitBake + OE-Core)
- meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking)
- meta-openwrt/     OpenWrt customization layer
- setup-env.sh      One-click build environment setup
- README.md         Project documentation
2026-07-11 13:28:01 +08:00

25 lines
677 B
BlitzBasic

SUMMARY = "Curl for People - C++ Requests"
DESCRIPTION = "Curl for People C++ Requests is a simple wrapper around \
libcurl inspired by the excellent Python Requests project."
HOMEPAGE = "https://docs.libcpr.org/"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=08beaae5deae1c43c065592da8f38095"
DEPENDS = "curl openssl"
SRC_URI = "git://github.com/libcpr/cpr.git;protocol=https;branch=1.10.x"
SRCREV = "3b15fa82ea74739b574d705fea44959b58142eb8"
S = "${WORKDIR}/git"
inherit cmake
# building tests is currently using FetchContent for mongoose
EXTRA_OECMAKE += "\
-DCPR_USE_SYSTEM_CURL=ON \
-DCPR_BUILD_TESTS=OFF \
"
BBCLASSEXTEND = "native nativesdk"