add tcp keepalive setup to test
[ocurl.git] / curl.opam
blob19482b2b21a7fe12b6214af0df1102cf75f10a8f
1 opam-version: "2.0"
2 name: "curl"
3 maintainer: "ygrek@autistici.org"
4 homepage: "https://ygrek.org/p/ocurl"
5 license: "MIT"
6 authors: [ "Lars Nilsson" "ygrek" ]
7 doc: ["https://ygrek.org/p/ocurl/api/index.html"]
8 dev-repo: "git+https://github.com/ygrek/ocurl.git"
9 bug-reports: "https://github.com/ygrek/ocurl/issues"
10 tags: ["org:ygrek" "clib:curl"]
11 build: [
12   ["./configure"]
13   [
14     "dune"
15     "build"
16     "-p"
17     name
18     "-j"
19     jobs
20     "@install"
21     "@runtest" {with-test}
22     "@doc" {with-doc}
23   ]
25 depends: [
26   "ocaml" {>= "4.03.0"}
27   "dune" {>= "2.8"}
28   "odoc" {with-doc}
29   "base-unix"
30   "conf-libcurl"
32 depopts: ["lwt" "lwt_ppx"]
33 synopsis: "Bindings to libcurl"
34 description: "libcurl is a client-side URL transfer library, supporting HTTP and a multitude of other network protocols (FTP/SMTP/RTSP/etc). This library wrap easy synchronous API (Curl), synchronous parallel and generic asynchronous API (Curl.Multi), and provides an Lwt-enabled asynchronous interface (Curl_lwt)."