summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBartosz Szostak <bartosz.szostak@xware.pl>2025-01-02 12:01:17 +0100
committerKhem Raj <raj.khem@gmail.com>2025-01-02 07:49:49 -0800
commit21ce8860055db3c04d2ebcb85bf88942ed0248f0 (patch)
treec92b0c69358190da7edbd82dbb530739799ac166
parent5bd1d5ad77101f775db65bb13612faf880801865 (diff)
downloadmeta-openembedded-21ce8860055db3c04d2ebcb85bf88942ed0248f0.tar.gz
ctre: add new recipe
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-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"