aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/package/pcre2.az
blob: 0e7d1c681c647eb0ffbb35a2e5884d30a5416bfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package pcre2 {
	description = "a set of C functions that implement regular expression pattern matching";
	website = "https://pcre2project.github.io/pcre2";
	anitya = 5832;

	version# = "10.48";
	source = remoteGitHubRelease {
		suffix = "PCRE2Project/pcre2";
		tag = "pcre2-"+version;
		name = "pcre2-"+version+".tar.bz2";
		checksum = "3HorftFDryXBh8JLSbEVWpU3OtSF_wUhtNZNCRvCDiGlBsMU150CxrDFKE8lVo6x";
		compress = bzip2;
	};

	// RunGrepTest expects /bin/echo
	bin = [ "echo" ];
	exec = make {
		configure = {
			"enable-jit";
			"enable-pcre2-8";
			"enable-pcre2-16";
			"enable-pcre2-32";
		};
	};

	inputs = [ diffutils ];
}