this repo has no description
1opam-version: "2.0"
2synopsis: """Basic OS interaction for OCaml"""
3maintainer: ["Daniel Bünzli <daniel.buenzl i@erratique.ch>"]
4authors: ["The bos programmers"]
5homepage: "https://erratique.ch/software/bos"
6doc: "https://erratique.ch/software/bos/doc"
7dev-repo: "git+https://erratique.ch/repos/bos.git"
8bug-reports: "https://github.com/dbuenzli/bos/issues"
9license: ["ISC"]
10tags: ["os" "system" "cli" "command" "file" "path" "log" "unix"
11 "org:erratique"]
12depends: ["ocaml" {>= "4.08.0"}
13 "ocamlfind" {build}
14 "ocamlbuild" {build}
15 "topkg" {build & >= "1.0.3"}
16 "base-unix"
17 "rresult" {>= "0.7.0"}
18 "astring"
19 "fpath" {>= "0.7.3"}
20 "fmt" {>= "0.8.10"}
21 "logs"
22 "mtime" {with-test}]
23build: [["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"]]
24url {
25 src: "https://erratique.ch/software/bos/releases/bos-0.2.1.tbz"
26 checksum: "sha512=8daeb8a4c2dd1f2460f6274ada19f4f1b6ebe875ff83a938c93418ce0e6bdb74b8afc5c9a7d410c1c9df2dad030e4fa276b6ed2da580639484e8b5bc92610b1d"}
27description: """
28Bos provides support for basic and robust interaction with the
29operating system in OCaml. It has functions to access the process
30environment, parse command line arguments, interact with the file
31system and run command line programs.
32
33Bos works equally well on POSIX and Windows operating systems.
34
35Bos depends on [Rresult][rresult], [Astring][astring], [Fmt][fmt],
36[Fpath][fpath] and [Logs][logs] and the OCaml Unix library. It is
37distributed under the ISC license.
38
39[rresult]: http://erratique.ch/software/rresult
40[astring]: http://erratique.ch/software/astring
41[fmt]: http://erratique.ch/software/fmt
42[fpath]: http://erratique.ch/software/fpath
43[logs]: http://erratique.ch/software/logs
44
45Home page: http://erratique.ch/software/bos
46Contact: Daniel Bünzli `<daniel.buenzl i@erratique.ch>`"""
47
48x-maintenance-intent: ["(latest)"]