undef more TCP_ symbols
[ocurl.git] / curl_lwt.opam
blobe6050ec71647841d214fd3861199fa3f7862e7fa
1 opam-version: "2.0"
2 name: "curl_lwt"
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   [
13     "dune"
14     "build"
15     "-p"
16     name
17     "-j"
18     jobs
19     "@install"
20     "@runtest" {with-test}
21     "@doc" {with-doc}
22   ]
24 depends: [
25   "ocaml" {>= "4.03.0"}
26   "dune" {>= "2.8"}
27   "odoc" {with-doc}
28   "base-unix"
29   "curl" {= version}
30   "lwt"
32 synopsis: "Bindings to libcurl (lwt variant)"
33 description: "libcurl is a client-side URL transfer library, supporting HTTP and a multitude of other network protocols (FTP/SMTP/RTSP/etc). This library  provides an Lwt-enabled asynchronous interface (Curl_lwt)."