this repo has no description
1opam-version: "2.0"
2maintainer: "ygrek@autistici.org"
3license: "BSD-3-Clause"
4authors: [
5 "Maas-Maarten Zeeman <mmzeeman@xs4all.nl>"
6 "ygrek <ygrek@autistici.org>"
7]
8homepage: "https://github.com/ygrek/ocaml-libevent"
9dev-repo: "git+https://github.com/ygrek/ocaml-libevent.git"
10bug-reports: "https://github.com/ygrek/ocaml-libevent/issues"
11tags: ["org:ygrek"]
12build: [
13 [make "depend"]
14 [make]
15 [make "test"] {with-test & os != "macos"}
16 [make "doc"] {with-doc}
17]
18install: [
19 [make "install"]
20]
21depends: [
22 "ocaml" {>= "4.02.0" & < "5.0"}
23 "ocamlfind" {build}
24 "base-unix"
25 "base-bytes" {with-test}
26 "ounit" {with-test}
27 "conf-libevent" {build}
28]
29synopsis: "OCaml wrapper for the libevent API"
30description: """
31libevent provides a mechanism to execute a callback function
32when a specific event occurs on a file descriptor or
33after a timeout has been reached. Furthermore, libevent also
34supports callbacks due to signals or regular timeouts."""
35url {
36 src:
37 "https://ygrek.org/p/release/ocaml-libevent/ocaml-libevent-0.8.1.tar.gz"
38 checksum: [
39 "sha256=3299c5ffd5458e7ff39959ba2ad112bf24fce039bb665d9fd28afbbc292cd49f"
40 "md5=0f87c6327e62a8bf631a45e85289be07"
41 ]
42 mirrors:
43 "https://github.com/ygrek/ocaml-libevent/releases/download/v0.8.1/ocaml-libevent-0.8.1.tar.gz"
44}