diff options
Diffstat (limited to 'meta-networking/recipes-support/libcpr/libcpr_1.12.0.bb')
-rw-r--r-- | meta-networking/recipes-support/libcpr/libcpr_1.12.0.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/libcpr/libcpr_1.12.0.bb b/meta-networking/recipes-support/libcpr/libcpr_1.12.0.bb new file mode 100644 index 0000000000..58da899081 --- /dev/null +++ b/meta-networking/recipes-support/libcpr/libcpr_1.12.0.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | SUMMARY = "Curl for People - C++ Requests" | ||
2 | DESCRIPTION = "Curl for People C++ Requests is a simple wrapper around \ | ||
3 | libcurl inspired by the excellent Python Requests project." | ||
4 | HOMEPAGE = "https://docs.libcpr.org/" | ||
5 | |||
6 | LICENSE = "MIT" | ||
7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=08beaae5deae1c43c065592da8f38095" | ||
8 | |||
9 | DEPENDS = "curl openssl" | ||
10 | |||
11 | SRC_URI = "git://github.com/libcpr/cpr.git;protocol=https;branch=master" | ||
12 | SRCREV = "da40186618909b1a7363d4e4495aa899c6e0eb75" | ||
13 | |||
14 | |||
15 | inherit cmake | ||
16 | |||
17 | # building tests is currently using FetchContent for mongoose | ||
18 | EXTRA_OECMAKE += "\ | ||
19 | -DCPR_USE_SYSTEM_CURL=ON \ | ||
20 | -DCPR_BUILD_TESTS=OFF \ | ||
21 | " | ||
22 | |||
23 | BBCLASSEXTEND = "native nativesdk" | ||