You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
opam-version: "2.0" |
|
maintainer: "rudi.grinberg@gmail.com" |
|
authors: [ |
|
"Jerome Vouillon" |
|
"Thomas Gazagnaire" |
|
"Anil Madhavapeddy" |
|
"Rudi Grinberg" |
|
"Gabriel Radanne" |
|
] |
|
license: "LGPL-2.0 with OCaml linking exception" |
|
homepage: "https://github.com/ocaml/ocaml-re" |
|
bug-reports: "https://github.com/ocaml/ocaml-re/issues" |
|
dev-repo: "git+https://github.com/ocaml/ocaml-re.git" |
|
build: [ |
|
["jbuilder" "subst" "-p" name] {pinned} |
|
["jbuilder" "build" "-p" name "-j" jobs] |
|
["jbuilder" "runtest" "-p" name "-j" jobs] {with-test} |
|
] |
|
depends: [ |
|
"ocaml" {>= "4.02.3"} |
|
"jbuilder" {build & >= "1.0+beta10"} |
|
"ounit" {with-test} |
|
] |
|
synopsis: "RE is a regular expression library for OCaml" |
|
description: """ |
|
Pure OCaml regular expressions with: |
|
* Perl-style regular expressions (module Re.Perl) |
|
* Posix extended regular expressions (module Re.Posix) |
|
* Emacs-style regular expressions (module Re.Emacs) |
|
* Shell-style file globbing (module Re.Glob) |
|
* Compatibility layer for OCaml's built-in Str module (module Re.Str)""" |
|
url { |
|
src: |
|
"https://github.com/ocaml/ocaml-re/releases/download/1.7.3/re-1.7.3.tbz" |
|
checksum: "md5=d2a74ca77216861bce4449600a132de9" |
|
}
|
|
|