this repo has no description
1opam-version: "2.0" 2synopsis: 3 "Bindings to the Perl Compatibility Regular Expressions library (version 2)" 4description: """ 5pcre2-ocaml offers library functions for string pattern matching and 6substitution, similar to the functionality offered by the Perl language.""" 7maintainer: ["Chet Murthy <chetsky@gmail.com>"] 8authors: ["Markus Mottl <markus.mottl@gmail.com>"] 9license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 10homepage: "https://github.com/camlp5/pcre2-ocaml" 11bug-reports: "https://github.com/camlp5/pcre2-ocaml/issues" 12depends: [ 13 "dune" {>= "2.7"} 14 "ocaml" {>= "4.12"} 15 "dune-configurator" 16 "conf-libpcre2-8" {build} 17 "ounit2" {with-test} 18 "odoc" {with-doc} 19] 20build: [ 21 ["dune" "subst"] {dev} 22 [ 23 "dune" 24 "build" 25 "-p" 26 name 27 "-j" 28 jobs 29 "@install" 30 "@runtest" {with-test} 31 "@doc" {with-doc} 32 ] 33] 34dev-repo: "git+https://github.com/camlp5/pcre2-ocaml.git" 35url { 36 src: 37 "https://github.com/camlp5/pcre2-ocaml/releases/download/7.5.2/pcre2-7.5.2.tbz" 38 checksum: [ 39 "sha256=da3b9a6e566707c64ab78468fb4c453e930716740e3ae911566f6a378d0562c8" 40 "sha512=951205a368cb6b613f89cc3b20384786d972fb8f91b9ccef907f90f55568fb33a2e3df4a54dc7ea28811f192c328798503c4361a32ba29aa1b145de54a487b43" 41 ] 42} 43x-commit-hash: "c6e88b9aa567ad444ef999b9b101ae5041f4be0b"