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: "http://mmottl.github.io/pcre-ocaml" 6dev-repo: "git+https://github.com/mmottl/pcre-ocaml.git" 7bug-reports: "https://github.com/mmottl/pcre-ocaml/issues" 8build: [ 9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 10 ["ocaml" "setup.ml" "-build"] 11 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test} 12 ["ocaml" "setup.ml" "-build"] {with-test} 13 ["ocaml" "setup.ml" "-test"] {with-test} 14 ["ocaml" "setup.ml" "-doc"] {with-doc} 15] 16install: ["ocaml" "setup.ml" "-install"] 17remove: [ 18 ["ocamlfind" "remove" "pcre"] 19] 20depends: [ 21 "ocaml" {>= "3.12" & < "5.0"} 22 "base-bytes" 23 "ocamlfind" {build & >= "1.5"} 24 "ocamlbuild" {build & != "0.9.0"} 25 "conf-libpcre" 26] 27synopsis: 28 "Bindings to the Perl Compatibility Regular Expressions library" 29description: """ 30pcre-ocaml offers library functions for string pattern matching and 31substitution, similar to the functionality offered by the Perl 32language.""" 33flags: light-uninstall 34url { 35 src: 36 "https://github.com/mmottl/pcre-ocaml/releases/download/v7.2.2/pcre-ocaml-7.2.2.tar.gz" 37 checksum: [ 38 "sha256=64b2956c638f3428e72c481de766d977a86cab9e7f158bb745469b740f2db786" 39 "md5=16893ec8ade0cbfe400e367f4b33691d" 40 ] 41}