this repo has no description
1opam-version: "2.0" 2synopsis: "Bindings for the ffmpeg libraries -- top-level helpers" 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 "conf-pkg-config" {build} 10 "conf-ffmpeg" {build} 11 "ocaml" {>= "4.08.0"} 12 "dune" {>= "2.0"} 13 "dune-configurator" {build} 14 "ffmpeg-avutil" {= version} 15 "ffmpeg-avcodec" {= version} 16] 17conflicts: [ 18 "ffmpeg" {< "0.5.0"} 19] 20build: [ 21 ["dune" "subst"] {pinned} 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.0.0-beta1.tar.gz" 37 checksum: [ 38 "md5=69d8276d0fccb3d6e7f3d7d24f75d397" 39 "sha512=f9b9663f54c73626e345b11d4140b94d98abd8601eed7f9c951d9d12da10f023d3197423c0939e32b1e39fefd6ee09997da274e38795f7470ca72b144c37f147" 40 ] 41}