forked from ygrek/ocurl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
opam
28 lines (28 loc) · 932 Bytes
/
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
opam-version: "2.0"
name: "ocurl"
maintainer: "ygrek@autistici.org"
homepage: "https://ygrek.org.ua/p/ocurl"
license: "MIT"
authors: [ "Lars Nilsson" "ygrek" ]
doc: ["https://ygrek.org.ua/p/ocurl/api/index.html"]
dev-repo: "git://github.com/ygrek/ocurl.git"
bug-reports: "https://github.com/ygrek/ocurl/issues"
tags: ["org:ygrek" "clib:curl"]
build: [
["./configure"]
[make]
[make "doc"] {with-doc}
[make "test"] {with-test}
]
install: [
[make "install"]
]
depends: [
"ocaml" {>= "4.02.0"}
"ocamlfind" {build}
"base-unix"
"conf-libcurl"
]
depopts: ["lwt" "lwt_ppx"]
synopsis: "Bindings to libcurl"
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)."