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 "base-bytes"
19 "ocamlfind" {>= "1.5"}
20 "conf-libpcre"
21 "ocamlbuild" {build & != "0.9.0"}
22]
23install: ["ocaml" "setup.ml" "-install"]
24synopsis:
25 "Bindings to the Perl Compatibility Regular Expressions library"
26description: """
27pcre-ocaml offers library functions for string pattern matching and
28substitution, similar to the functionality offered by the Perl
29language."""
30flags: light-uninstall
31url {
32 src:
33 "https://github.com/mmottl/pcre-ocaml/releases/download/v7.1.5/pcre-ocaml-7.1.5.tar.gz"
34 checksum: [
35 "sha256=6495ecf25ed6a69fd14fda472f9fac9853dde2aee9944f6b6c0111d458c1039b"
36 "md5=28e40ad63fe2d568aa47ff460d3f9d3a"
37 ]
38}