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: "https://github.com/savonet/ocaml-ffmpeg/releases/download/0.4.1/ocaml-ffmpeg-0.4.1.tar.gz"
44 checksum: [
45 "md5=d6b0100f198004b5a697d7c12ab4d833"
46 "sha512=279034401ff9fc76291420d9e5a0ba184778ce66df5522372af7bc80fa60b63f8e204bc4d0a02512bafa1ac8bb00168d48989e182a1123876fca6cb781e1c5df"
47 ]
48}