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-ffmpeg" 5bug-reports: "https://github.com/savonet/ocaml-ffmpeg/issues" 6synopsis: 7 "Bindings for the ffmpeg library which provides functions for decoding audio and video files" 8depends: [ 9 "ocaml" {>= "4.05.0" & < "5.0"} 10 "ocamlfind" {build} 11 "conf-pkg-config" {build} 12 "conf-autoconf" {dev & build} 13 "base-bigarray" 14 "base-threads" 15] 16build: [ 17 ["./bootstrap"] {dev} 18 ["./configure" "--prefix" prefix] 19 [make "clean"] {dev} 20 [make] 21] 22install: [make "install"] 23depexts: [ 24 ["libavutil-dev" "libswscale-dev" "libavformat-dev" "libavcodec-dev" "libavdevice-dev" "libswresample-dev"] 25 {os-distribution = "debian"} 26 ["libavutil-dev" "libswscale-dev" "libavformat-dev" "libavcodec-dev" "libavdevice-dev" "libswresample-dev"] 27 {os-distribution = "ubuntu"} 28 ["ffmpeg-dev"] {os-distribution = "alpine"} 29 ["ffmpeg"] {os-distribution = "arch"} 30 ["ffmpeg-devel"] {os-distribution = "centos"} 31 ["ffmpeg-devel"] {os-distribution = "fedora"} 32 ["ffmpeg-devel"] {os-family = "suse" | os-family = "opensuse"} 33 ["ffmpeg"] {os-distribution = "nixos"} 34 ["ffmpeg"] {os = "macos" & os-distribution = "homebrew"} 35] 36dev-repo: "git+https://github.com/savonet/ocaml-ffmpeg.git" 37url { 38 src: 39 "https://github.com/savonet/ocaml-ffmpeg/releases/download/v0.4.2/ocaml-ffmpeg-0.4.2.tar.gz" 40 checksum: [ 41 "md5=058068a916ff50167b23ef5fc0384f9c" 42 "sha512=7c845462e52520ccc617033c758e4a75461bf56e9cafdf6ec5811c4385502ce3d868a5fdb52e82e1cfc5f483bdf2246c3ddd5ec7967de681961411604cb63e7e" 43 ] 44}