this repo has no description
1opam-version: "2.0" 2synopsis: "Binding for the Secure, Reliable, Transport protocol library" 3description: """ 4Secure Reliable Transport (SRT) is an open source transport technology 5that optimizes streaming performance across unpredictable networks, such 6as the Internet. 7This package provides OCaml bindings to the C implementation library. 8""" 9maintainer: ["The Savonet Team <savonet-users@lists.sourceforge.net>"] 10authors: ["The Savonet Team <savonet-users@lists.sourceforge.net>"] 11license: "GPL-2.0-only" 12homepage: "https://github.com/savonet/ocaml-srt" 13bug-reports: "https://github.com/savonet/ocaml-srt/issues" 14depends: [ 15 "conf-srt" {build} 16 "conf-pkg-config" {build} 17 "dune" {> "2.0"} 18 "dune-configurator" {build} 19 "ctypes" 20 "integers" 21 "posix-socket" 22 "ocamlfind" 23] 24build: [ 25 ["dune" "subst"] {pinned} 26 [ 27 "dune" 28 "build" 29 "-p" 30 name 31 "-j" 32 jobs 33 "@install" 34 "@runtest" {with-test} 35 "@doc" {with-doc} 36 ] 37] 38dev-repo: "git+https://github.com/savonet/ocaml-srt.git" 39url { 40 src: "https://github.com/savonet/ocaml-srt/archive/v0.2.0.tar.gz" 41 checksum: [ 42 "md5=b88016bd043d2bbf695d0000bc758f0f" 43 "sha512=f42a685a60bd7b5b0be5c89177a9e1b948c8b64f6cacff6fa8988697d95c5746de84f1c9048ea931fe6ae53efeeeabcc669ad3332437898c2513e0d78c2fe293" 44 ] 45}