this repo has no description
1opam-version: "2.0" 2maintainer: "Gabriel Radanne <drupyog@zoho.com>" 3authors: "Gabriel Radanne <drupyog@zoho.com>" 4homepage: "https://github.com/Drup/tyre" 5doc: "https://drup.github.io/tyre/0.1.1/Tyre.html" 6bug-reports: "https://github.com/Drup/tyre/issues" 7license: "ISC" 8tags: "regex" 9dev-repo: "git+https://github.com/Drup/tyre.git" 10build: [ 11 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 12 ["ocaml" "setup.ml" "-build"] 13 ["ocaml" "setup.ml" "-configure" "--prefix" prefix "--enable-tests"] 14 {with-test} 15 ["ocaml" "setup.ml" "-build"] {with-test} 16 ["ocaml" "setup.ml" "-test"] {with-test} 17 ["ocaml" "setup.ml" "-doc"] {with-doc} 18] 19install: ["ocaml" "setup.ml" "-install"] 20remove: ["ocamlfind" "remove" "tyre"] 21depends: [ 22 "ocaml" {>= "4.02.0"} 23 "ocamlfind" {build} 24 "ocamlbuild" {build} 25 "re" {>= "1.6.0" & < "1.9.0"} 26 "alcotest" {with-test & >= "0.6.0" & < "0.8.0"} 27 "result" 28] 29synopsis: "Typed Regular Expressions" 30description: """ 31Tyre is a set of combinators to build type-safe regular expressions, allowing automatic extraction and modification of matched groups. 32Tyre is bi-directional: a typed regular expressions can be used for parsing and unparsing. It also allows routing, by providing a list of regexs/routes and their handlers.""" 33flags: light-uninstall 34url { 35 src: "https://github.com/Drup/tyre/archive/0.1.1.tar.gz" 36 checksum: [ 37 "sha256=13fa60a3ab120a69eb6448f4ead380ff0d59a53541656926bc8fa145eedfe4ff" 38 "md5=f99c76c3385de770f56e8591bbf21fa4" 39 ] 40}