this repo has no description
at main 1.3 kB view raw
1opam-version: "2.0" 2maintainer: "rudi.grinberg@gmail.com" 3authors: [ 4 "Jerome Vouillon" 5 "Thomas Gazagnaire" 6 "Anil Madhavapeddy" 7 "Rudi Grinberg" 8 "Gabriel Radanne" 9] 10license: "LGPL-2.0-only WITH OCaml-LGPL-linking-exception" 11homepage: "https://github.com/ocaml/ocaml-re" 12bug-reports: "https://github.com/ocaml/ocaml-re/issues" 13dev-repo: "git+https://github.com/ocaml/ocaml-re.git" 14build: [ 15 ["jbuilder" "subst" "-n" name] {dev} 16 ["jbuilder" "build" "-p" name "-j" jobs] 17 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test} 18] 19depends: [ 20 "ocaml" {>= "4.02.3"} 21 "jbuilder" {>= "1.0+beta10"} 22 "ounit" {with-test} 23 "seq" 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)""" 33url { 34 src: 35 "https://github.com/ocaml/ocaml-re/releases/download/1.8.0/re-1.8.0.tbz" 36 checksum: [ 37 "sha256=9b027c415b7d8752477db8923d53f5eabc05179bb34da2f0ee175f4894207b62" 38 "md5=765f6f8d3e6ab200866e719ed7e5178d" 39 ] 40}