summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMeier Boas <boas.meier@gmail.com>2022-10-31 15:13:07 +0100
committerKhem Raj <raj.khem@gmail.com>2022-10-31 08:27:33 -0700
commitb7033c7ec2ea811b7337cbb18ac24085b2176a25 (patch)
tree57edc982f699709008a6662b8198d96c2c4e16ff
parent744942c4f5840c3acf8f159713612021ee3da174 (diff)
downloadmeta-openembedded-b7033c7ec2ea811b7337cbb18ac24085b2176a25.tar.gz
jwt-cpp: add recipe
Signed-off-by: Boas Meier <boas.meier@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-devtools/jwt-cpp/jwt-cpp_0.6.0.bb18
1 files changed, 18 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/jwt-cpp/jwt-cpp_0.6.0.bb b/meta-oe/recipes-devtools/jwt-cpp/jwt-cpp_0.6.0.bb
new file mode 100644
index 0000000000..8929115fd7
--- /dev/null
+++ b/meta-oe/recipes-devtools/jwt-cpp/jwt-cpp_0.6.0.bb
@@ -0,0 +1,18 @@
1SUMMARY = "A header only library for creating and validating json web tokens in c++"
2HOMEPAGE = "https://thalhammer.github.io/jwt-cpp/"
3SECTION = "libs"
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=8325a5ce4414c65ffdda392e0d96a9ff"
6
7SRC_URI = "git://github.com/Thalhammer/jwt-cpp.git;branch=master;protocol=https \
8 "
9
10SRCREV = "4a537e969891dde542ad8b1a4a214955a83be29f"
11
12S = "${WORKDIR}/git"
13
14DEPENDS = "openssl"
15
16inherit cmake
17
18EXTRA_OECMAKE += "-DJWT_BUILD_EXAMPLES=OFF -DJWT_CMAKE_FILES_INSTALL_DIR=${libdir}/cmake"