Skip to content

Commit 55d2a96

Browse files
authored
Merge pull request ocaml#27730 from ninjaaron/opam-publish-subprocess.0.2.1
Package subprocess.0.2.1
2 parents 39968cb + cb2ac0b commit 55d2a96

File tree

1 file changed

+44
-0
lines changed
  • packages/subprocess/subprocess.0.2.1

1 file changed

+44
-0
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# This file is generated by dune, edit dune-project instead
2+
opam-version: "2.0"
3+
synopsis: "Nice interfaces handling I/O with Unix commands"
4+
description: """
5+
Subprocess is a library for safely and (relatively) easily working launching processes with commands on Unix systems, with a focus on I/O. It is intended to be easier to use than the Unix module.
6+
7+
Checkout the documentation at https://ninjaaron.github.io/ocaml-subprocess/subprocess/index.html
8+
"""
9+
maintainer: ["Aaron Christianson"]
10+
authors: ["Aaron Christianson"]
11+
license: "MPL-2.0"
12+
tags: ["unix" "processes" "io" "commands"]
13+
homepage: "https://github.com/ninjaaron/ocaml-subprocess"
14+
doc: "https://github.com/ninjaaron/ocaml-subprocess"
15+
bug-reports: "https://github.com/ninjaaron/ocaml-subprocess/issues"
16+
depends: [
17+
"ocaml" {>= "5.1"}
18+
"dune" {>= "3.7"}
19+
"ppx_expect" {with-test}
20+
"odoc" {with-doc}
21+
]
22+
build: [
23+
["dune" "subst"] {dev}
24+
[
25+
"dune"
26+
"build"
27+
"-p"
28+
name
29+
"-j"
30+
jobs
31+
"@install"
32+
"@runtest" {with-test}
33+
"@doc" {with-doc}
34+
]
35+
]
36+
dev-repo: "git+https://github.com/ninjaaron/ocaml-subprocess.git"
37+
url {
38+
src:
39+
"https://github.com/ninjaaron/ocaml-subprocess/archive/refs/tags/0.2.1.tar.gz"
40+
checksum: [
41+
"md5=01bd4eb8585102758c19d104aa59365f"
42+
"sha512=85c06ec131d4ac448a47a7e68a6a0910efe456c84338d556f70e09aa0caf247bf97950fb0ab8c0dd134c585bcf152ea5cbbdcb5c05860e6459af0af50c1123e7"
43+
]
44+
}

0 commit comments

Comments
 (0)