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.1.tar.gz"
36 checksum: [
37 "sha256=262554309d645f4126a2a2e21e3a798d250293264fda34d6271243cc6c16e576"
38 "md5=20a0194ab9613f434fdfdf947f5b6d71"
39 ]
40}