-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathcurl.opam
More file actions
39 lines (39 loc) · 1.13 KB
/
curl.opam
File metadata and controls
39 lines (39 loc) · 1.13 KB
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
29
30
31
32
33
34
35
36
37
38
39
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
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) and synchronous parallel and generic asynchronous API (Curl.Multi). For the Lwt-enabled asynchronous interface (Curl_lwt) see curl_lwt package."
maintainer: ["root@ygrek.org" "Antonin Décimo <antonin@tarides.com>"]
authors: ["Lars Nilsson" "ygrek"]
license: "MIT"
tags: ["org:ygrek" "clib:curl"]
homepage: "https://ygrek.org/p/ocurl"
doc: "https://ygrek.org/p/ocurl/api/index.html"
bug-reports: "https://github.com/ygrek/ocurl/issues"
depends: [
"dune" {>= "3.0"}
"ocaml" {>= "4.11"}
"dune-configurator" {>= "3.18.1"}
"base-bigarray"
"base-unix"
"conf-libcurl"
"odoc" {with-doc}
]
conflicts: [
"ocurl" {!= "transition"}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ygrek/ocurl.git"