diff mbox series

[meta-oe] cpp-argparse: added recipe

Message ID 20250708171647.2706820-1-yishai1999@gmail.com
State Under Review
Headers show
Series [meta-oe] cpp-argparse: added recipe | expand

Commit Message

Yishai Jaffe July 8, 2025, 5:16 p.m. UTC
Added recipe for C++ argparse library

Signed-off-by: Yishai Jaffe <yishai1999@gmail.com>
---
 .../cpp-argparse/cpp-argparse_3.2.bb                | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 meta-oe/recipes-devtools/cpp-argparse/cpp-argparse_3.2.bb
diff mbox series

Patch

diff --git a/meta-oe/recipes-devtools/cpp-argparse/cpp-argparse_3.2.bb b/meta-oe/recipes-devtools/cpp-argparse/cpp-argparse_3.2.bb
new file mode 100644
index 0000000000..cb7ae45d38
--- /dev/null
+++ b/meta-oe/recipes-devtools/cpp-argparse/cpp-argparse_3.2.bb
@@ -0,0 +1,13 @@ 
+SUMMARY = "Argument Parser for Modern C++"
+HOMEPAGE = "https://github.com/p-ranav/argparse"
+BUGTRACKER = "https://github.com/p-ranav/argparse/issues"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=4f3ed9ec2c801700ac8fda1fcd29a330"
+
+SRCREV = "3eda91b2e1ce7d569f84ba295507c4cd8fd96910"
+SRC_URI = "git://github.com/p-ranav/argparse.git;branch=master;protocol=https;tag=v${PV}"
+
+inherit cmake
+EXTRA_OECMAKE = "-DARGPARSE_BUILD_TESTS=OFF"
+
+BBCLASSEXTEND = "native nativesdk"