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-avutil" {= version}
12 "ffmpeg-avcodec" {= version}
13 "ffmpeg-avfilter" {= version}
14 "ffmpeg-avdevice" {= version}
15 "ffmpeg-swscale" {= version}
16 "ffmpeg-swresample" {= version}
17 "odoc" {with-doc}
18]
19build: [
20 ["dune" "subst"] {dev}
21 [
22 "dune"
23 "build"
24 "-p"
25 name
26 "-j"
27 jobs
28 "@install"
29 "@runtest" {with-test}
30 "@doc" {with-doc}
31 ]
32]
33dev-repo: "git+https://github.com/savonet/ocaml-ffmpeg.git"
34url {
35 src: "https://github.com/savonet/ocaml-ffmpeg/archive/v1.0.0-beta2.tar.gz"
36 checksum: [
37 "md5=cb1a88080b2f3a14b9a494efe0ba9127"
38 "sha512=5861437764eb96580d0e639bb779ad7ecb06c008bcf13d3290bfacf484050e430c904583ae9ff0cea166de255c7e0e045bd8559cf596df58f28d0897f5db55ab"
39 ]
40}