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