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.0"}
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]
18build: [
19 ["dune" "subst"] {dev}
20 [
21 "dune"
22 "build"
23 "-p"
24 name
25 "-j"
26 jobs
27 "@install"
28 "@runtest" {with-test}
29 "@doc" {with-doc}
30 ]
31]
32dev-repo: "git+https://github.com/savonet/ocaml-ffmpeg.git"
33url {
34 src: "https://github.com/savonet/ocaml-ffmpeg/archive/v1.0.0-beta1.tar.gz"
35 checksum: [
36 "md5=69d8276d0fccb3d6e7f3d7d24f75d397"
37 "sha512=f9b9663f54c73626e345b11d4140b94d98abd8601eed7f9c951d9d12da10f023d3197423c0939e32b1e39fefd6ee09997da274e38795f7470ca72b144c37f147"
38 ]
39}