46 lines
971 B
TOML
46 lines
971 B
TOML
[build]
|
|
type = "autotools"
|
|
|
|
[build.flags]
|
|
configure = [
|
|
"--enable-unicode",
|
|
"--enable-jit",
|
|
"--enable-pcre2-16",
|
|
"--enable-pcre2-32",
|
|
"--enable-pcre2grep-libz",
|
|
"--enable-pcre2grep-libbz2",
|
|
"--enable-pcre2test-libreadline",
|
|
"--disable-static",
|
|
]
|
|
build-32 = true
|
|
|
|
[dependencies]
|
|
runtime = [
|
|
"glibc",
|
|
"ux",
|
|
"bzip2",
|
|
"readline",
|
|
"zlib-ng"
|
|
]
|
|
optional = [ "sh" ]
|
|
|
|
[dependencies.lib32]
|
|
runtime = [
|
|
"lib32-glibc",
|
|
"lib32-bzip2",
|
|
"lib32-readline",
|
|
"lib32-zlib-ng"
|
|
]
|
|
|
|
[package]
|
|
description = "new generation of the Perl Compatible Regular Expression libraries"
|
|
homepage = "https://pcre2project.github.io/pcre2/"
|
|
license = "BSD-3-Clause WITH PCRE2-exception"
|
|
name = "pcre2"
|
|
version = "10.47"
|
|
|
|
[[source]]
|
|
extract_dir = "$name-$version"
|
|
sha256 = "47fe8c99461250d42f89e6e8fdaeba9da057855d06eb7fc08d9ca03fd08d7bc7"
|
|
url = "https://github.com/PCRE2Project/pcre2/releases/download/pcre2-$version/pcre2-$version.tar.bz2"
|