1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-30 02:47:35 +00:00

Ports/ffmpeg: Update to version 6.0

This additionally includes a patch from the current master branch,
which fixes building with binutils 2.41 and newer.
This commit is contained in:
Tim Schumacher 2023-10-02 01:26:34 +02:00 committed by Jelle Raaijmakers
parent dd81bea9ef
commit 00ed042eda
6 changed files with 136 additions and 10 deletions

View file

@ -1,13 +1,22 @@
#!/usr/bin/env -S bash ../.port_include.sh
port=ffmpeg
version=5.0
useconfigure=true
depends=("libiconv" "libtiff" "xz" "bzip2" "SDL2" "x264" "x265")
files=(
"https://ffmpeg.org/releases/ffmpeg-${version}.tar.gz#7bf52bc242b5db8df67c62cb826df134d917dedcf6abf1289e15e4057bcc1750"
port='ffmpeg'
version='6.0'
useconfigure='true'
depends=(
'bzip2'
'libiconv'
'libtiff'
'SDL2'
'x264'
'x265'
'xz'
)
files=(
"https://ffmpeg.org/releases/ffmpeg-${version}.tar.gz#f4ccf961403752c93961927715f524576d1f4dd02cd76d8c76aed3bbe6686656"
)
installopts=(
"INSTALL_TOP=${SERENITY_INSTALL_ROOT}/usr/local"
)
installopts=("INSTALL_TOP=${SERENITY_INSTALL_ROOT}/usr/local")
configopts=("SRC_PATH=.")
configure() {
run ./configure \