-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathopam
More file actions
52 lines (48 loc) · 1.59 KB
/
opam
File metadata and controls
52 lines (48 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
opam-version: "2.0"
name: "cmdliner"
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 command line completion, syntax errors,
help messages and UNIX man page generation. It supports programs with
single or multiple commands and respects most of the [POSIX] and [GNU]
conventions.
Cmdliner has no dependencies and is distributed under the ISC license.
Homepage: <http://erratique.ch/software/cmdliner>
[POSIX]: http://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap12.html
[GNU]: http://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html"""
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"
"BINDIR=%{_:bin}%"
"LIBDIR=%{_:lib}%"
"DOCDIR=%{_:doc}%"
"SHAREDIR=%{share}%"
"MANDIR=%{man}%"
]
[
make
"install-doc"
"LIBDIR=%{_:lib}%"
"DOCDIR=%{_:doc}%"
"SHAREDIR=%{share}%"
"MANDIR=%{man}%"
]
]
dev-repo: "git+https://erratique.ch/repos/cmdliner.git"
x-maintenance-intent: ["(latest)"]