-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetarg.opam
30 lines (29 loc) · 1.02 KB
/
getarg.opam
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
opam-version: "2.0"
version: "0.6"
maintainer: "Quentin Heath <[email protected]>"
authors: "Quentin Heath <[email protected]>"
homepage: "https://github.com/qheath/getarg"
bug-reports: "https://github.com/qheath/getarg/issues"
dev-repo: "git://github.com/qheath/getarg.git"
license: "GPL-3"
build: [
["dune" "build" "-p" name "-j" jobs "@install"]
["dune" "build" "-p" name "-j" jobs "@runtest"] {with-test}
["dune" "build" "-p" name "-j" jobs "@doc"] {with-doc}
]
depends: [
"dune" {build}
]
synopsis: "Command-line option parser"
description: """
This library offers an alternative to the standard OCaml Arg module
with a support for short and long options (à la getopt).
It is similar to Getopt and Getopts, with a few key differences:
- long options (with an expanded form that can take a mandatory
argument)
- no expanded form for short options with optional arguments
- clusters of short options (mixing with and without arguments)"""
#url {
# src: ""
# checksum: ""
#}