this repo has no description
1opam-version: "2.0"
2maintainer: "Markus Mottl <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" "-configure" "--enable-tests"] {with-test}
12 ["ocaml" "setup.ml" "-build"] {with-test}
13 ["ocaml" "setup.ml" "-test"] {with-test}
14 ["ocaml" "setup.ml" "-doc"] {with-doc}
15]
16install: ["ocaml" "setup.ml" "-install"]
17remove: [
18 ["ocamlfind" "remove" "pcre"]
19]
20depends: [
21 "ocaml" {>= "3.12" & < "5.0"}
22 "base-bytes"
23 "ocamlfind" {build & >= "1.5"}
24 "ocamlbuild" {build & != "0.9.0"}
25 "conf-libpcre"
26]
27depexts: [
28 ["ocaml-ocamldoc"] {os-distribution = "centos"}
29 ["ocaml-ocamldoc"] {os-distribution = "fedora"}
30 ["ocaml-ocamldoc"] {os-family = "suse" | os-family = "opensuse"}
31]
32synopsis:
33 "Bindings to the Perl Compatibility Regular Expressions library"
34description: """
35pcre-ocaml offers library functions for string pattern matching and
36substitution, similar to the functionality offered by the Perl
37language."""
38flags: light-uninstall
39url {
40 src:
41 "https://github.com/mmottl/pcre-ocaml/releases/download/v7.2.3/pcre-ocaml-7.2.3.tar.gz"
42 checksum: [
43 "sha256=6339694dbeb706c5097180ed1d79b2dae681bf155a4780a7909af49b0e6f4666"
44 "md5=90b503355160d7422a7c3ef1623e6444"
45 ]
46}