this repo has no description
1opam-version: "2.0" 2maintainer: "romain.beauxis@gmail.com" 3homepage: "https://github.com/savonet/ocaml-srt" 4authors: "The Savonet Team <savonet-users@lists.sourceforge.net>" 5bug-reports: "https://github.com/savonet/ocaml-srt/issues" 6dev-repo: "git+https://github.com/savonet/ocaml-srt.git" 7synopsis: "Binding for the Secure, Reliable, Transport protocol library" 8description: """ 9Secure Reliable Transport (SRT) is an open source transport technology 10that optimizes streaming performance across unpredictable networks, such 11as the Internet. 12This package provides OCaml bindings to the C implementation library. 13""" 14depends: [ 15 "ocaml" 16 "dune" {>= "1.10"} 17 "ctypes" 18 "sys-socket" 19] 20depexts: [ 21 ["srt-devel"] {os-distribution = "centos"} 22 ["srt-devel"] {os-distribution = "fedora"} 23 ["srt-devel"] {os-family = "suse" | os-family = "opensuse"} 24 ["libsrt-dev"] {os-family = "debian"} 25 ["srt"] {os = "macos" & os-distribution = "homebrew"} 26] 27build: [ 28 ["dune" "build" "-p" name "-j" jobs] 29 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 30] 31url { 32 src: "https://github.com/savonet/ocaml-srt/archive/v0.1.0.tar.gz" 33 checksum: [ 34 "md5=78a525581b24ef8eba5b8e9210c70775" 35 "sha512=cdd69203d1fd325b615a740d565d7833df15af9950aa8d4cc4c0e4b925a4f5a52b9dc546aa0fc52910845164145c999333578c82b31d2048566d6ee7d82dec80" 36 ] 37}