this repo has no description
1opam-version: "2.0" 2maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 3authors: ["Daniel Bünzli <daniel.buenzl i@erratique.ch>"] 4homepage: "http://erratique.ch/software/cmdliner" 5doc: "http://erratique.ch/software/cmdliner/doc/Cmdliner" 6dev-repo: "git+http://erratique.ch/repos/cmdliner.git" 7bug-reports: "https://github.com/dbuenzli/cmdliner/issues" 8tags: [ "cli" "system" "declarative" "org:erratique" ] 9license: "ISC" 10depends:[ "ocaml" {>= "4.03.0" & < "5.0"} ] 11build: [[ make "all" "PREFIX=%{prefix}%" ]] 12install: 13[[make "install" "LIBDIR=%{_:lib}%" "DOCDIR=%{_:doc}%" ] 14 [make "install-doc" "LIBDIR=%{_:lib}%" "DOCDIR=%{_:doc}%" ]] 15 16synopsis: """Declarative definition of command line interfaces for OCaml""" 17description: """\ 18 19Cmdliner allows the declarative definition of command line interfaces 20for OCaml. 21 22It provides a simple and compositional mechanism to convert command 23line arguments to OCaml values and pass them to your functions. The 24module automatically handles syntax errors, help messages and UNIX man 25page generation. It supports programs with single or multiple commands 26and respects most of the [POSIX][1] and [GNU][2] conventions. 27 28Cmdliner has no dependencies and is distributed under the ISC license. 29 30[1]: http://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap12.html 31[2]: http://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html 32""" 33url { 34 src: "http://erratique.ch/software/cmdliner/releases/cmdliner-1.0.3.tbz" 35 checksum: [ 36 "sha256=ca762a40084c878ab083a41cdb424f8e229a453516ab72bde8a9b3c036247c3c" 37 "md5=3674ad01d4445424105d33818c78fba8" 38 ] 39}