this repo has no description
1opam-version: "2.0" 2maintainer: "Mindy Preston <mindy.preston@docker.com>" 3authors: ["Jon Ludlam" "Magnus Skjegstad" "Mindy Preston"] 4tags: "org:mirage" 5homepage: "https://github.com/mirage/parse-argv" 6doc: "https://mirage.github.io/parse-argv/" 7bug-reports: "https://github.com/mirage/parse-argv/issues" 8depends: [ 9 "ocaml" {>= "4.04.2"} 10 "dune" {>= "1.0"} 11 "ounit" {with-test} 12 "astring" 13] 14build: [ 15 ["dune" "subst"] {dev} 16 ["dune" "build" "-p" name "-j" jobs] 17 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 18] 19dev-repo: "git+https://github.com/mirage/parse-argv.git" 20synopsis: "Process strings into sets of command-line arguments" 21description: """ 22parse-argv is a small implementation of a simple argv parser. 23""" 24url { 25 src: 26 "https://github.com/mirage/parse-argv/releases/download/v0.2.0/parse-argv-v0.2.0.tbz" 27 checksum: [ 28 "sha256=fc15f9722fa60bb45357aebf5a4abb1e2f3061e6df89687ff3f3f2ca1c01b419" 29 "md5=0621122768b81e089e5d5ebd7fd2c856" 30 ] 31} 32flags: deprecated 33post-messages: [ "parse-argv is deprecated, and has been folded into mirage-bootvar" ]