this repo has no description
1opam-version: "2.0" 2maintainer: "Romain Beauxis <toots@rastageeks.org>" 3authors: "The Savonet Team <savonet-users@lists.sourceforge.net>" 4homepage: "https://github.com/savonet/ocaml-vorbis" 5build: [ 6 ["./configure" "--prefix" prefix] 7 [make] 8] 9install: [ 10 [make "install"] 11] 12remove: ["ocamlfind" "remove" "vorbis"] 13depends: [ 14 "ocaml" {>= "4.03"} 15 "ocamlfind" {build} 16 "ogg" {< "0.7.0"} 17] 18depexts: [ 19 ["libvorbis-dev"] {os-distribution = "alpine"} 20 ["libvorbis-devel"] {os-distribution = "centos"} 21 ["libvorbis-devel"] {os-distribution = "fedora"} 22 ["libvorbis-devel"] {os-family = "suse" | os-family = "opensuse"} 23 ["pkg-config" "libvorbis-dev"] {os-family = "debian"} 24 ["libvorbis"] {os = "macos" & os-distribution = "homebrew"} 25] 26bug-reports: "https://github.com/savonet/ocaml-vorbis/issues" 27dev-repo: "git+https://github.com/savonet/ocaml-vorbis.git" 28synopsis: "Bindings to libvorbis" 29flags: light-uninstall 30url { 31 src: 32 "https://github.com/savonet/ocaml-vorbis/releases/download/0.7.1/ocaml-vorbis-0.7.1.tar.gz" 33 checksum: [ 34 "sha256=26c6bf9d5c3ed3c737fde4caf473d0b65e170f4806ad9ea25beb9723c8da0d6d" 35 "md5=341b6f36265c181d3f5da107cbdd8963" 36 ] 37}