Files
hakurei/internal/rosa/package/pcre2.az
T
cat 3975dd3e0f internal/rosa: create /bin symlinks via helper
This centralises the workaround for surprisingly common buggy scripts with nonstandard hardcoded paths.

Signed-off-by: Ophestra <cat@gensokyo.uk>
2026-07-01 15:03:26 +09:00

28 lines
633 B
Go

package pcre2 {
description = "a set of C functions that implement regular expression pattern matching";
website = "https://pcre2project.github.io/pcre2";
anitya = 5832;
version# = "10.47";
source = remoteGitHubRelease {
suffix = "PCRE2Project/pcre2";
tag = "pcre2-"+version;
name = "pcre2-"+version+".tar.bz2";
checksum = "IbC24vVayju6nB9EhrBPSDexk22wDecdpyrjgC3nCZXkwTnUjq4CD2q5sopqu6CW";
compress = bzip2;
};
// RunGrepTest expects /bin/echo
bin = [ "echo" ];
exec = make {
configure = {
"enable-jit";
"enable-pcre2-8";
"enable-pcre2-16";
"enable-pcre2-32";
};
};
inputs = [ diffutils ];
}