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