this repo has no description
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+beta7"}
22 "base-bytes"
23 "ounit" {with-test}
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.7.2/re-1.7.2.tbz"
36 checksum: [
37 "sha256=f04c5ab5278e8967aafe23ba3de1bf18a359d0a6ab19b6d7a37109f9882adad1"
38 "md5=d7c94a401d03f4688aabc60cd40217aa"
39 ]
40}