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.4.0/ocaml-ffmpeg-0.4.0.tar.gz"
45 checksum: [
46 "md5=7f0e6b37047f2e5bd95483aa17643f08"
47 "sha512=2eabd88ef6b76ca6713df219c139a1580342ab7860a154af05c5078a2ed0c043aa053aaed1e2eb0edb0393d9305f874a586382f979655b93a2c52278583d5e13"
48 ]
49}