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"] 23x-ci-accept-failures: ["debian-11" "debian-unstable"] 24depexts: [ 25 [ 26 "libavutil-dev" 27 "libswscale-dev" 28 "libavformat-dev" 29 "libavcodec-dev" 30 "libavdevice-dev" 31 "libswresample-dev" 32 ] {os-family = "debian"} 33 ["ffmpeg-dev"] {os-distribution = "alpine"} 34 ["ffmpeg"] {os-distribution = "arch"} 35 ["ffmpeg-devel"] {os-distribution = "centos"} 36 ["ffmpeg-devel"] {os-distribution = "fedora"} 37 ["ffmpeg-devel"] {os-family = "suse" | os-family = "opensuse"} 38 ["ffmpeg"] {os-distribution = "nixos"} 39 ["ffmpeg"] {os = "macos" & os-distribution = "homebrew"} 40] 41dev-repo: "git+https://github.com/savonet/ocaml-ffmpeg.git" 42url { 43 src: 44 "https://github.com/savonet/ocaml-ffmpeg/releases/download/0.3.0/ocaml-ffmpeg-0.3.0.tar.gz" 45 checksum: [ 46 "md5=eca02854f7ebd08386e8989f2316611c" 47 "sha512=bddf3bdf6938f3990ef06d735ac32273cc3055d97d9a709db7d67a9ce9d6c499fb9fdb25bfcab2045d24a3dc0b76beeda73b713ba961dfb5d82a99e0779e1682" 48 ] 49}