this repo has no description
1opam-version: "2.0" 2maintainer: "unixjunkie@sdf.org" 3authors: "Francois Berenger" 4homepage: "https://github.com/UnixJunkie/minicli" 5bug-reports: "https://github.com/UnixJunkie/minicli/issues" 6dev-repo: "git+https://github.com/UnixJunkie/minicli.git" 7build: [ 8 ["obuild" "configure"] 9 ["obuild" "build" "lib-minicli"] 10] 11install: ["obuild" "install"] 12remove: ["ocamlfind" "remove" "minicli"] 13depends: [ 14 "ocaml" {>= "4.02.0"} 15 "ocamlfind" 16 "obuild" {build} 17] 18synopsis: "Minimalist library for command line parsing." 19description: """ 20minicli provides the CLI module. 21It allows programmers to quickly and correctly handle options passed via 22the command line to their program. minicli is intended at 23people who develop software fast but who don't want to break things. 24minicli can throw a variety of informative exceptions to the user 25when the command line interface is not being used correctly. 26The Arg module from the stdlib is another, bigger alternative. 27Another more complete alternative is the cmdliner library.""" 28flags: light-uninstall 29url { 30 src: "https://github.com/UnixJunkie/minicli/archive/v2.0.0.tar.gz" 31 checksum: [ 32 "sha256=9d989654b14cae08f1cb8370cdee0d875e3f3ae67de4291251cbb98b54962c00" 33 "md5=77de461a7a12ccd3f0c1c964359d47e6" 34 ] 35}