this repo has no description
at main 1.3 kB view raw
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.3.2.tar.gz" 36 checksum: [ 37 "sha256=3a34c3d6b6bf61e0d1eb9af74fa82c936809f7e48f8872fb6b11252c79a5d466" 38 "md5=1622796daf07397b266738e6710db4f3" 39 ] 40}