this repo has no description
1opam-version: "2.0"
2license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
3synopsis: "Easy interface to Cmdliner à la Arg.parse with sub-commands"
4description: """
5ez_cmdliner is a simple layer on top of Cmdliner to provide an interface
6à la Arg.parse with an extension for simple sub-commands.
7"""
8authors: ["Fabrice Le Fessant <fabrice.le_fessant@ocamlpro.com>"]
9maintainer: ["Fabrice Le Fessant <fabrice.le_fessant@ocamlpro.com>"]
10homepage: "https://ocamlpro.github.io/ez_cmdliner"
11doc: "https://ocamlpro.github.io/ez_cmdliner/sphinx"
12bug-reports: "https://github.com/ocamlpro/ez_cmdliner/issues"
13dev-repo: "git+https://github.com/ocamlpro/ez_cmdliner.git"
14tags: "org:ocamlpro"
15build: [
16 ["dune" "subst"] {dev}
17 ["sh" "-c" "./scripts/before.sh build '%{name}%'"]
18 [
19 "dune"
20 "build"
21 "-p"
22 name
23 "-j"
24 jobs
25 "@install"
26 "@runtest" {with-test}
27 "@doc" {with-doc}
28 ]
29 ["sh" "-c" "./scripts/after.sh build '%{name}%'"]
30]
31install: [
32 ["sh" "-c" "./scripts/before.sh install '%{name}%'"]
33]
34depends: [
35 "ocaml" {>= "4.07.0"}
36 "dune" {>= "2.6.0"}
37 "ocplib_stuff" {>= "0.3"}
38 "ez_subst" {>= "0.1"}
39 "cmdliner" {>= "1.0.0" & < "2.0.0"}
40 "cmdliner" {with-test & < "1.1.0"}
41 "ppx_inline_test" {with-test}
42 "ppx_expect" {with-test}
43 "odoc" {with-doc}
44 "ocamlformat" {with-test}
45]
46
47url {
48 src: "https://github.com/ocamlpro/ez_cmdliner/archive/v0.4.0.tar.gz"
49 checksum: [ "sha256=dda03dba7abff475a19d892577a55ed84ee3eb6079eb3e084b8221b26297b0ab" ]
50}