Skip to content

Commit

Permalink
[FFMPEG] Upgrade to v4.4 and build for experimental platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed May 29, 2021
1 parent 1742d88 commit 6b0c3d5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
10 changes: 4 additions & 6 deletions F/FFMPEG/FFMPEG/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,17 @@ products = [
# TODO: Theora once it's available
dependencies = [
BuildDependency("nv_codec_headers_jll"),
Dependency("libass_jll"),
Dependency("libass_jll"; compat="0.15.1"),
Dependency("libfdk_aac_jll"),
Dependency("FriBidi_jll"),
Dependency("FreeType2_jll"),
Dependency("LAME_jll"),
Dependency("libvorbis_jll"),
Dependency("Ogg_jll"),
BuildDependency("LibVPX_jll"), # We use the static archive
Dependency("x264_jll", v"2020.7.14"; compat="=2020.7.14"),
Dependency("x265_jll"),
# Future versions of bzip2 should allow a more relaxed compat because the
# soname of the macOS library shouldn't change at every patch release.
Dependency("Bzip2_jll", v"1.0.6"; compat="=1.0.6"),
Dependency("x264_jll"; compat="~2021.05.05"),
Dependency("x265_jll"; compat="~3.5"),
Dependency("Bzip2_jll"; compat="1.0.8"),
Dependency("Zlib_jll"),
Dependency("OpenSSL_jll"),
Dependency("Opus_jll"),
Expand Down
6 changes: 3 additions & 3 deletions F/FFMPEG/common.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
using BinaryBuilder, Pkg

name = "FFMPEG"
version = v"4.3.1"
version = v"4.4"

# Collection of sources required to build FFMPEG
sources = [
ArchiveSource("https://ffmpeg.org/releases/ffmpeg-$(version).tar.xz",
"ad009240d46e307b4e03a213a0f49c11b650e445b1f8be0dda2a9212b34d2ffb"),
ArchiveSource("https://ffmpeg.org/releases/ffmpeg-$(version.major).$(version.minor).tar.xz",
"06b10a183ce5371f915c6bb15b7b1fffbe046e8275099c96affc29e17645d909"),
]

# Bash recipe for building across all platforms
Expand Down

0 comments on commit 6b0c3d5

Please sign in to comment.