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-theora" 5build: [ 6 ["./configure" "--prefix" prefix] 7 [make] 8] 9install: [ 10 [make "install"] 11] 12remove: ["ocamlfind" "remove" "theora"] 13depends: [ 14 "ocaml" 15 "ocamlfind" 16 "ogg" {< "0.7.0"} 17] 18depexts: [ 19 ["libtheora-dev"] {os-distribution = "alpine"} 20 ["libtheora-devel"] {os-distribution = "centos"} 21 ["libtheora-devel"] {os-distribution = "fedora"} 22 ["libtheora-devel"] {os-family = "suse" | os-family = "opensuse"} 23 ["theora"] {os = "macos" & os-distribution = "homebrew"} 24 ["libtheora-dev"] {os-family = "debian"} 25] 26bug-reports: "https://github.com/savonet/ocaml-theora/issues" 27dev-repo: "git+https://github.com/savonet/ocaml-theora.git" 28synopsis: 29 "Bindings for the theora library to decode video files in theora format" 30flags: light-uninstall 31url { 32 src: 33 "https://github.com/savonet/ocaml-theora/releases/download/0.3.1/ocaml-theora-0.3.1.tar.gz" 34 checksum: [ 35 "sha256=7d8bd55f68d65a2d57f6e478ed680c438cc8209f2a41e53c71426719ac223a86" 36 "md5=1a5de0e6254178db0da10e96d4d6d13f" 37 ] 38}