this repo has no description
at main 1.2 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" "-p" 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] 24synopsis: "RE is a regular expression library for OCaml" 25description: """ 26Pure OCaml regular expressions with: 27* Perl-style regular expressions (module Re.Perl) 28* Posix extended regular expressions (module Re.Posix) 29* Emacs-style regular expressions (module Re.Emacs) 30* Shell-style file globbing (module Re.Glob) 31* Compatibility layer for OCaml's built-in Str module (module Re.Str)""" 32url { 33 src: 34 "https://github.com/ocaml/ocaml-re/releases/download/1.7.3/re-1.7.3.tbz" 35 checksum: [ 36 "sha256=d9674725760f926c6f4687bc8d449d6db8f839551a6ecc5288c923eaf018695b" 37 "md5=d2a74ca77216861bce4449600a132de9" 38 ] 39}