-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpolly.opam
35 lines (35 loc) · 893 Bytes
/
polly.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Bindings for the Linux epoll system call"
description: """
Bindings for the Linux epoll system call. The binding avoids
most allocation in the event loop by iterating over all file
descriptors that are reported as ready.
"""
maintainer: ["Christian Lindig <christian.lindig@cloud.com>"]
authors: ["Christian Lindig <christian.lindig@cloud.com>"]
license: "MIT"
homepage: "/~https://github.com/lindig/polly"
bug-reports: "/~https://github.com/lindig/polly/issues"
depends: [
"dune" {>= "2.0"}
"ocaml" {>= "4.08.0"}
"cmdliner" {>= "1.1.0"}
"base-unix"
"conf-linux-libc-dev"
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+/~https://github.com/lindig/polly.git"