diff options
| author | Bartosz Szostak <bartosz.szostak@xware.pl> | 2025-01-02 12:01:17 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-01-02 07:49:49 -0800 |
| commit | 21ce8860055db3c04d2ebcb85bf88942ed0248f0 (patch) | |
| tree | c92b0c69358190da7edbd82dbb530739799ac166 | |
| parent | 5bd1d5ad77101f775db65bb13612faf880801865 (diff) | |
| download | meta-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.bb | 22 |
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 @@ | |||
| 1 | DESCRIPTION = "Fast compile-time regular expressions with support for matching/searching/capturing." | ||
| 2 | HOMEPAGE = "https://github.com/hanickadot/compile-time-regular-expressions" | ||
| 3 | |||
| 4 | LICENSE = "Apache-2.0" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=2e982d844baa4df1c80de75470e0c5cb" | ||
| 6 | |||
| 7 | SRC_URI = "git://github.com/hanickadot/compile-time-regular-expressions.git;protocol=https;branch=main" | ||
| 8 | SRCREV = "eb9577aae3515d14e6c5564f9aeb046d2e7c1124" | ||
| 9 | |||
| 10 | S = "${WORKDIR}/git" | ||
| 11 | |||
| 12 | inherit cmake | ||
| 13 | |||
| 14 | PACKAGECONFIG ??= "" | ||
| 15 | PACKAGECONFIG[module] = "-DCTRE_MODULE=ON,-DCTRE_MODULE=OFF" | ||
| 16 | PACKAGECONFIG[tests] = "-DCTRE_BUILD_TESTS=ON,-DCTRE_BUILD_TESTS=OFF" | ||
| 17 | |||
| 18 | EXTRA_OECMAKE:append = " \ | ||
| 19 | -DCTRE_BUILD_PACKAGE=OFF \ | ||
| 20 | -DCTRE_BUILD_PACKAGE_DEB=OFF \ | ||
| 21 | -DCTRE_BUILD_PACKAGE_RPM=OFF \ | ||
| 22 | " | ||
