this repo has no description
1opam-version: "2.0" 2maintainer: "ygrek@autistici.org" 3homepage: "https://ygrek.org/p/ocurl/" 4license: "MIT" 5authors: [ "Lars Nilsson" "ygrek" ] 6doc: ["https://ygrek.org/p/ocurl/api/index.html"] 7dev-repo: "git+https://github.com/ygrek/ocurl.git" 8bug-reports: "https://github.com/ygrek/ocurl/issues" 9tags: ["org:ygrek" "clib:curl"] 10build: [ 11 ["./configure"] 12 [make] 13 [make "test"] {with-test} 14 [make "doc"] {with-doc} 15] 16install: [ 17 [make "install"] 18] 19remove: [["ocamlfind" "remove" "curl"]] 20depends: [ 21 "ocaml" {< "4.10"} 22 "ocamlfind" {build} 23 "base-unix" 24 "conf-libcurl" 25] 26depopts: ["lwt"] 27conflicts: [ 28 "lwt" {>= "4.0.0"} 29 "ocaml-option-bytecode-only" 30] 31synopsis: "Bindings to libcurl" 32description: """ 33Client-side URL transfer library, supporting HTTP and a multitude of 34other network protocols (FTP/SMTP/RTSP/etc).""" 35flags: light-uninstall 36url { 37 src: "https://ygrek.org/p/release/ocurl/ocurl-0.8.0.tar.gz" 38 checksum: [ 39 "sha256=99935feb1e7ff6456e33452888a3671ecb6535a303b006f24203bc54b79d2209" 40 "md5=1622d7d1777192c387cdf72567dc5b2b" 41 ] 42 mirrors: 43 "https://github.com/ygrek/ocurl/releases/download/0.8.0/ocurl-0.8.0.tar.gz" 44}