this repo has no description
1opam-version: "2.0" 2maintainer: "Markus Mottl <markus.mottl@gmail.com>" 3authors: [ "Markus Mottl <markus.mottl@gmail.com>" ] 4license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 5homepage: "https://mmottl.github.io/pcre-ocaml" 6doc: "https://mmottl.github.io/pcre-ocaml/api" 7dev-repo: "git+https://github.com/mmottl/pcre-ocaml.git" 8bug-reports: "https://github.com/mmottl/pcre-ocaml/issues" 9 10build: [ 11 ["dune" "subst"] {dev} 12 ["dune" "build" "-p" name "-j" jobs] 13] 14 15depends: [ 16 "ocaml" {>= "4.04"} 17 "dune" {>= "1.4.0"} 18 "dune-configurator" 19 "conf-libpcre" {build} 20 "base" {build} 21] 22 23synopsis: "Bindings to the Perl Compatibility Regular Expressions library" 24 25description: """ 26pcre-ocaml offers library functions for string pattern matching and 27substitution, similar to the functionality offered by the Perl language.""" 28url { 29 src: 30 "https://github.com/mmottl/pcre-ocaml/releases/download/7.3.5/pcre-7.3.5.tbz" 31 checksum: [ 32 "sha256=d8f8dfeb6368fcff126f6a09c6a28d8287118a7cdd16b8ac1b69074745967e16" 33 "md5=f1ad11d393d2df08c03c0e7eb0ce85e4" 34 ] 35}