This commit is contained in:
2026-06-02 21:38:47 +02:00
parent d3c949b8a2
commit f51dab51db
70 changed files with 1632 additions and 21 deletions
+19
View File
@@ -0,0 +1,19 @@
version = "10.45"
revision = 1
description = "Perl-compatible regular expression library (PCRE2)"
license = "BSD-3-Clause"
url = "https://www.pcre.org/"
source = tarball(
url=f"https://github.com/PCRE2Project/pcre2/releases/download/pcre2-{version}/pcre2-{version}.tar.gz",
sha256="0e138387df7835d7403b8351e2226c1377da804e0737db0e071b48f07c9d12ee",
)
host_deps = ["binutils", "gcc", "pkgconf"]
deps = [profile["libc"]]
configure, build, install = autotools(
configure_args=[
"--enable-pcre2-16",
"--enable-pcre2-32",
"--enable-jit",
],
)