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