this repo has no description
1opam-version: "2.0"
2maintainer: "jerome.vouillon@pps.univ-paris-diderot.fr"
3authors: ["Jerome Vouillon" "Thomas Gazagnaire" "Anil Madhavapeddy"]
4homepage: "https://github.com/ocaml/ocaml-re"
5bug-reports: "https://github.com/ocaml/ocaml-re/issues"
6license: "LGPL-2.0-only WITH OCaml-LGPL-linking-exception"
7dev-repo: "git+https://github.com/ocaml/ocaml-re.git"
8build: [
9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix]
10 ["ocaml" "setup.ml" "-build"]
11 ["ocaml" "setup.ml" "-doc"] {with-doc}
12]
13install: ["ocaml" "setup.ml" "-install"]
14remove: ["ocamlfind" "remove" "re"]
15depends: [
16 "ocaml" {< "5.0"}
17 "ocamlfind" {build}
18 "ocamlbuild" {build}
19 "base-bytes"
20]
21synopsis: "RE is a regular expression library for OCaml"
22description: """
23Pure OCaml regular expressions with:
24* Perl-style regular expressions (module Re_perl)
25* Posix extended regular expressions (module Re_posix)
26* Emacs-style regular expressions (module Re_emacs)
27* Shell-style file globbing (module Re_glob)
28* Compatibility layer for OCaml's built-in Str module (module Re_str)"""
29flags: light-uninstall
30url {
31 src: "https://github.com/ocaml/ocaml-re/archive/ocaml-re-1.5.0.tar.gz"
32 checksum: [
33 "sha256=53322f763a8d771a68f986c9c323cab7d3afa56873c3eefa528fb92b1b511dd3"
34 "md5=1e9bff3279648881be31e5ff96219f0a"
35 ]
36}