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: ["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/1.7.1.tar.gz" 32 checksum: [ 33 "sha256=eb18382d63459b0a4065315ce6fef854bc99152aec2b557bb8a43e664e6679e8" 34 "md5=0e45743512b7ab5e6b175f955dc72002" 35 ] 36}