forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ocaml#17072 from lefessan/z-2020-08-27-add-ez_cmdl…
…iner Add ez_cmdliner library
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# This file was generated by `drom` from `drom.toml`. | ||
# Do not modify or add to the `skip` field of `drom.toml`. | ||
opam-version: "2.0" | ||
name: "ez_cmdliner" | ||
version: "0.1.1" | ||
license: "LGPL-2.1-with-OCaml-exception" | ||
synopsis: "Easy interface to Cmdliner à la Arg.parse with sub-commands" | ||
description: """ | ||
ez_cmdliner is a simple layer on top of Cmdliner to provide an interface | ||
à la Arg.parse with an extension for simple sub-commands. | ||
""" | ||
authors: ["Fabrice Le Fessant <[email protected]>"] | ||
maintainer: ["Fabrice Le Fessant <[email protected]>"] | ||
homepage: "https://ocamlpro.github.io/ez_cmdliner" | ||
doc: "https://ocamlpro.github.io/ez_cmdliner/sphinx" | ||
bug-reports: "https://github.com/ocamlpro/ez_cmdliner/issues" | ||
dev-repo: "git+https://github.com/ocamlpro/ez_cmdliner.git" | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
depends: [ | ||
"ocaml" {>= "4.03.0"} | ||
"cmdliner" {>= "1.0.0" & < "2.0.0"} | ||
"dune" {>= "2.6.0" & < "3.0.0"} | ||
] | ||
|
||
url { | ||
src: "https://github.com/ocamlpro/ez_cmdliner/archive/v0.1.1.tar.gz" | ||
checksum: [ "md5=b6e5e3389f4c52f598b27d9ccf2cc0af" ] | ||
} |