-
Notifications
You must be signed in to change notification settings - Fork 1
/
kqueue.opam
37 lines (37 loc) · 906 Bytes
/
kqueue.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "OCaml bindings for kqueue event notification interface"
maintainer: ["Anurag Soni <[email protected]>"]
authors: ["Anurag Soni"]
license: "BSD-3-clause"
tags: ["kqueue"]
homepage: "https://github.com/anuragsoni/kqueue-ml"
doc: "https://anuragsoni.github.io/kqueue-ml"
bug-reports: "https://github.com/anuragsoni/kqueue-ml/issues"
depends: [
"dune" {>= "2.9"}
"ppx_optcomp"
"ppx_expect" {with-test}
"ocaml" {>= "4.12"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/anuragsoni/kqueue-ml.git"
conflicts: [
"ppxlib" {< "0.14.0"}
]