this repo has no description

Add: cmdliner.1.1.1

Changed files
+39
packages
cmdliner
cmdliner.1.1.1
+39
packages/cmdliner/cmdliner.1.1.1/opam
···
+
opam-version: "2.0"
+
synopsis: "Declarative definition of command line interfaces for OCaml"
+
description: """\
+
Cmdliner allows the declarative definition of command line interfaces
+
for OCaml.
+
+
It provides a simple and compositional mechanism to convert command
+
line arguments to OCaml values and pass them to your functions. The
+
module automatically handles syntax errors, help messages and UNIX man
+
page generation. It supports programs with single or multiple commands
+
and respects most of the [POSIX][1] and [GNU][2] conventions.
+
+
Cmdliner has no dependencies and is distributed under the ISC license.
+
+
[1]: http://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap12.html
+
[2]: http://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html
+
+
Home page: http://erratique.ch/software/cmdliner"""
+
maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>"
+
authors: "The cmdliner programmers"
+
license: "ISC"
+
tags: ["cli" "system" "declarative" "org:erratique"]
+
homepage: "https://erratique.ch/software/cmdliner"
+
doc: "https://erratique.ch/software/cmdliner/doc"
+
bug-reports: "https://github.com/dbuenzli/cmdliner/issues"
+
depends: [
+
"ocaml" {>= "4.08.0"}
+
]
+
build: [make "all" "PREFIX=%{prefix}%"]
+
install: [
+
[make "install" "LIBDIR=%{_:lib}%" "DOCDIR=%{_:doc}%"]
+
[make "install-doc" "LIBDIR=%{_:lib}%" "DOCDIR=%{_:doc}%"]
+
]
+
dev-repo: "git+https://erratique.ch/repos/cmdliner.git"
+
url {
+
src: "https://erratique.ch/software/cmdliner/releases/cmdliner-1.1.1.tbz"
+
checksum:
+
"sha512=5478ad833da254b5587b3746e3a8493e66e867a081ac0f653a901cc8a7d944f66e4387592215ce25d939be76f281c4785702f54d4a74b1700bc8838a62255c9e"
+
}