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