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 "conf-libpcre" {build}
23 "base" {build}
24]
25url {
26 src:
27 "https://github.com/mmottl/pcre-ocaml/releases/download/7.4.3/pcre-7.4.3.tbz"
28 checksum: [
29 "sha256=9068c5abcf6e2528e27250c9beca60645842c7a6ce2d36f64d1fe9104ef2121e"
30 "sha512=917e98aa86a75d2e17b0df9eb546c5dc568eacd0f2df0c5621467246142beff449e11544d88bc42eabf1cc288f7aa19aaebe90283ca8cf72dc023e52c6c21e02"
31 ]
32}