-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14927 from smimram/opam-publish-ffmpeg.0.4.1
Package ffmpeg.0.4.1
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
opam-version: "2.0" | ||
maintainer: "Romain Beauxis <[email protected]>" | ||
authors: "The Savonet Team <[email protected]>" | ||
homepage: "https://github.com/savonet/ocaml-ffmpeg" | ||
bug-reports: "https://github.com/savonet/ocaml-ffmpeg/issues" | ||
synopsis: | ||
"Bindings for the ffmpeg library which provides functions for decoding audio and video files" | ||
depends: [ | ||
"ocaml" {>= "4.05.0"} | ||
"ocamlfind" {build} | ||
"conf-pkg-config" {build} | ||
"conf-autoconf" {dev & build} | ||
"base-bigarray" | ||
"base-threads" | ||
] | ||
build: [ | ||
["./bootstrap"] {dev} | ||
["./configure" "--prefix" prefix] | ||
[make "clean"] {dev} | ||
[make] | ||
] | ||
install: [make "install"] | ||
depexts: [ | ||
["libavutil-dev" "libswscale-dev" "libavformat-dev" "libavcodec-dev" "libavdevice-dev" "libswresample-dev"] | ||
{os-distribution = "debian"} | ||
["libavutil-dev" "libswscale-dev" "libavformat-dev" "libavcodec-dev" "libavdevice-dev" "libswresample-dev"] | ||
{os-distribution = "ubuntu"} | ||
["ffmpeg-dev"] {os-distribution = "alpine"} | ||
["ffmpeg"] {os-distribution = "arch"} | ||
["ffmpeg-devel"] {os-distribution = "centos"} | ||
["ffmpeg-devel"] {os-distribution = "fedora"} | ||
["ffmpeg-devel"] {os-family = "suse"} | ||
["ffmpeg"] {os-distribution = "nixos"} | ||
["ffmpeg"] {os = "macos" & os-distribution = "homebrew"} | ||
] | ||
dev-repo: "git+https://github.com/savonet/ocaml-ffmpeg.git" | ||
url { | ||
src: "https://github.com/savonet/ocaml-ffmpeg/releases/download/0.4.1/ocaml-ffmpeg-0.4.1.tar.gz" | ||
checksum: [ | ||
"md5=d6b0100f198004b5a697d7c12ab4d833" | ||
"sha512=279034401ff9fc76291420d9e5a0ba184778ce66df5522372af7bc80fa60b63f8e204bc4d0a02512bafa1ac8bb00168d48989e182a1123876fca6cb781e1c5df" | ||
] | ||
} |