this repo has no description
1opam-version: "2.0" 2maintainer: "David Sheets <sheets@alum.mit.edu>" 3authors: "David Sheets <sheets@alum.mit.edu>" 4homepage: "https://github.com/dsheets/ocaml-process" 5bug-reports: "https://github.com/dsheets/ocaml-process/issues" 6license: "ISC" 7tags: ["process" "subprocess" "command" "system"] 8dev-repo: "git+https://github.com/dsheets/ocaml-process.git" 9build: [make] 10install: [make "install"] 11remove: ["ocamlfind" "remove" "process"] 12depends: [ 13 "ocaml" {>= "4.01.0"} 14 "ocamlfind" {build} 15 "ocamlbuild" {build} 16 "base-unix" 17 "base-bytes" 18] 19conflicts: ["ocaml-option-bytecode-only"] 20synopsis: "Easy process control" 21description: "process makes it easy to use commands like functions." 22flags: light-uninstall 23url { 24 src: "https://github.com/dsheets/ocaml-process/archive/0.2.0.tar.gz" 25 checksum: [ 26 "sha256=4d4c9ac18eed3dc34ba24e535d981ab042f6ed347d15f92f0fec180441b84667" 27 "md5=86c346f76533215452904b9434b075aa" 28 ] 29}