this repo has no description
1opam-version: "2.0" 2maintainer: "Spiros Eliopoulos <spiros@inhabitedtype.com>" 3authors: [ "Spiros Eliopoulos <spiros@inhabitedtype.com>" ] 4license: "BSD-3-Clause" 5homepage: "https://github.com/inhabitedtype/ocaml-dispatch" 6dev-repo: "git+https://github.com/inhabitedtype/ocaml-dispatch.git" 7bug-reports: "https://github.com/inhabitedtype/ocaml-dispatch/issues" 8build: [ 9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 10 ["ocaml" "setup.ml" "-build"] 11 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test} 12 ["ocaml" "setup.ml" "-build"] {with-test} 13 ["ocaml" "setup.ml" "-test"] {with-test} 14] 15install: ["ocaml" "setup.ml" "-install"] 16remove: [ 17 ["ocamlfind" "remove" "dispatch"] 18] 19depends: [ 20 "ocaml" {< "5.0"} 21 "ocamlfind" {build} 22 "ounit" {with-test & >= "1.0.2"} 23 "result" 24 "ocamlbuild" {build} 25] 26synopsis: "Path-based dispatching for client- and server-side applications." 27description: """ 28Dispatch provides a basic mechanism for dispatching a request to a 29handler based on hierarchical path names conventionally found in URIs. 30It can be used both for dispatching requests in a server, as well as 31handing changes to hierarchical fragments in a client-side 32application.""" 33flags: light-uninstall 34url { 35 src: "https://github.com/inhabitedtype/ocaml-dispatch/archive/0.1.0.tar.gz" 36 checksum: [ 37 "sha256=4d8c4c032821cb8214eeeed051db71b1cb59005afb9184b567e1d5aedd541c0b" 38 "md5=1aebd190fb41d63ee59b21e303b5d7b1" 39 ] 40}