+ HTTP_VERSION_3
[ocurl.git] / opam
blob1d25fc44582802a0a892f1bedae6c0d922ae5f78
1 opam-version: "2.0"
2 name: "ocurl"
3 maintainer: "ygrek@autistici.org"
4 homepage: "https://ygrek.org.ua/p/ocurl"
5 license: "MIT"
6 authors: [ "Lars Nilsson" "ygrek" ]
7 doc: ["https://ygrek.org.ua/p/ocurl/api/index.html"]
8 dev-repo: "git://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   [make]
14   [make "doc"] {with-doc}
15   [make "test"] {with-test}
17 install: [
18   [make "install"]
20 depends: [
21   "ocaml" {>= "4.02.0"}
22   "ocamlfind" {build}
23   "base-unix"
24   "conf-libcurl"
26 depopts: ["lwt" "lwt_ppx"]
27 synopsis: "Bindings to libcurl"
28 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)."