-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathfeather.opam
More file actions
39 lines (39 loc) · 887 Bytes
/
feather.opam
File metadata and controls
39 lines (39 loc) · 887 Bytes
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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.4.0"
synopsis: "A minimal shell interface"
maintainer: ["[email protected]"]
authors: ["Charles Chamberlain"]
license: "MIT"
homepage: "https://github.com/charlesetc/feather"
doc: "https://www.charlesetc.com/feather/feather/Feather/index.html"
bug-reports: "https://github.com/charlesetc/feather/issues"
depends: [
"dune" {>= "2.7"}
"ocaml" {>= "4.08"}
"base" {>= "v0.13.0"}
"ppx_expect"
"ppx_sexp_conv"
"stdio"
"spawn" {>= "v0.13.0"}
"odoc" {with-doc}
]
dev-repo: "git+https://github.com/charlesetc/feather.git"
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@doc" {with-doc}
]
]
depexts: [
# For pgrep
["procps"] {os-family = "debian"}
["procps-ng"] {os = "linux" & os-distribution = "archlinux"}
]