summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-support/ctre/ctre_3.9.0.bb22
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/ctre/ctre_3.9.0.bb b/meta-oe/recipes-support/ctre/ctre_3.9.0.bb
new file mode 100644
index 0000000000..3a09fe743c
--- /dev/null
+++ b/meta-oe/recipes-support/ctre/ctre_3.9.0.bb
@@ -0,0 +1,22 @@
1DESCRIPTION = "Fast compile-time regular expressions with support for matching/searching/capturing."
2HOMEPAGE = "https://github.com/hanickadot/compile-time-regular-expressions"
3
4LICENSE = "Apache-2.0"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=2e982d844baa4df1c80de75470e0c5cb"
6
7SRC_URI = "git://github.com/hanickadot/compile-time-regular-expressions.git;protocol=https;branch=main"
8SRCREV = "eb9577aae3515d14e6c5564f9aeb046d2e7c1124"
9
10S = "${WORKDIR}/git"
11
12inherit cmake
13
14PACKAGECONFIG ??= ""
15PACKAGECONFIG[module] = "-DCTRE_MODULE=ON,-DCTRE_MODULE=OFF"
16PACKAGECONFIG[tests] = "-DCTRE_BUILD_TESTS=ON,-DCTRE_BUILD_TESTS=OFF"
17
18EXTRA_OECMAKE:append = " \
19-DCTRE_BUILD_PACKAGE=OFF \
20-DCTRE_BUILD_PACKAGE_DEB=OFF \
21-DCTRE_BUILD_PACKAGE_RPM=OFF \
22"