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