1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
opam-version: "1.2"
name: "process"
version: "0.2.1"
maintainer: "David Sheets <sheets@alum.mit.edu>"
authors: [ "David Sheets" "Jonathan Protzenko" ]
homepage: "https://github.com/dsheets/ocaml-process"
bug-reports: "https://github.com/dsheets/ocaml-process/issues"
license: "ISC"
dev-repo: "https://github.com/dsheets/ocaml-process.git"
tags: [ "process" "subprocess" "command" "system" ]
build: [
[make]
]
install: [make "install"]
remove: ["ocamlfind" "remove" "process"]
depends: [
"ocamlfind" {build}
"ocamlbuild" {build}
"base-unix"
"base-bytes"
]
available: [ ocaml-version >= "4.01.0" ]
|