this repo has no description
1opam-version: "2.0" 2maintainer: "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" "-doc"] {with-doc} 12] 13remove: [ 14 ["ocamlfind" "remove" "pcre"] 15] 16depends: [ 17 "ocaml" {>= "3.12" & < "5.0"} 18 "ocamlfind" {>= "1.5"} 19 "conf-libpcre" 20 "ocamlbuild" {build & != "0.9.0"} 21] 22install: ["ocaml" "setup.ml" "-install"] 23synopsis: 24 "Bindings to the Perl Compatibility Regular Expressions library" 25description: """ 26pcre-ocaml offers library functions for string pattern matching and 27substitution, similar to the functionality offered by the Perl 28language.""" 29flags: light-uninstall 30url { 31 src: 32 "https://github.com/mmottl/pcre-ocaml/releases/download/v7.1.3/pcre-ocaml-7.1.3.tar.gz" 33 checksum: [ 34 "sha256=43f8e20a55d4c079f202234781f9eaee48e938eea55fa68aa6a7cdcb3fce7896" 35 "md5=4b1f7921448cacda608ad78a1e2d8fac" 36 ] 37}