this repo has no description
1opam-version: "2.0"
2synopsis: "Bindings for the ffmpeg libraries"
3maintainer: ["Romain Beauxis <toots@rastageeks.org>"]
4authors: ["The Savonet Team <savonet-users@lists.sourceforge.net>"]
5license: "LGPL-2.1-only"
6homepage: "https://github.com/savonet/ocaml-ffmpeg"
7bug-reports: "https://github.com/savonet/ocaml-ffmpeg/issues"
8depends: [
9 "ocaml" {>= "4.08.0"}
10 "dune" {>= "2.8"}
11 "ffmpeg-av" {= version}
12 "ffmpeg-avutil" {= version}
13 "ffmpeg-avcodec" {= version}
14 "ffmpeg-avfilter" {= version}
15 "ffmpeg-avdevice" {= version}
16 "ffmpeg-swscale" {= version}
17 "ffmpeg-swresample" {= version}
18 "odoc" {with-doc}
19]
20build: [
21 ["dune" "subst"] {dev}
22 [
23 "dune"
24 "build"
25 "-p"
26 name
27 "-j"
28 jobs
29 "@install"
30 "@runtest" {with-test}
31 "@doc" {with-doc}
32 ]
33]
34dev-repo: "git+https://github.com/savonet/ocaml-ffmpeg.git"
35url {
36 src: "https://github.com/savonet/ocaml-ffmpeg/archive/v1.1.0.tar.gz"
37 checksum: [
38 "md5=b7ef3b458b71bfc208525d140c998dfb"
39 "sha512=468a39c7bda0f88e4e7b3bc4b87c84f8ecfa612be327a57df8df5c613ba60881ae970041e22adef289f69a0edb7acf556c567f16d724283c9dd9950aadf2cea3"
40 ]
41}