20 lines
579 B
Python
20 lines
579 B
Python
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",
|
|
],
|
|
)
|