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 "base" {build} 25] 26url { 27 src: 28 "https://github.com/mmottl/pcre-ocaml/releases/download/7.4.4/pcre-7.4.4.tbz" 29 checksum: [ 30 "sha256=1e9db45646daaa5770e9f7bf2230697986698adb6969b4fb9ecade17facabf24" 31 "sha512=3c41ca1ea9f50ee4bd4b52ddb5e728c5489347fac1741e66ab318f424f3e5858f72dba1c8d04aa56524179411d103eb827b8251794a0e0be47ddedb002d23cb2" 32 ] 33}