Ports: Enable libx264 support in FFmpeg
This commit is contained in:
parent
a0bbadac14
commit
85ed64b99c
Notes:
sideshowbarker
2024-07-19 17:06:42 +09:00
Author: https://github.com/ghost Commit: https://github.com/SerenityOS/serenity/commit/85ed64b99cc Pull-request: https://github.com/SerenityOS/serenity/pull/13453 Reviewed-by: https://github.com/linusg
1 changed files with 5 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
|||
port=ffmpeg
|
||||
version=5.0
|
||||
useconfigure=true
|
||||
depends=("libiconv" "libtiff" "xz" "bzip2" "SDL2")
|
||||
depends=("libiconv" "libtiff" "xz" "bzip2" "SDL2" "x264")
|
||||
files="https://ffmpeg.org/releases/ffmpeg-${version}.tar.gz ffmpeg-${version}.tar.gz 7bf52bc242b5db8df67c62cb826df134d917dedcf6abf1289e15e4057bcc1750"
|
||||
auth_type="sha256"
|
||||
installopts=("INSTALL_TOP=${SERENITY_INSTALL_ROOT}/usr/local")
|
||||
|
@ -15,8 +15,10 @@ configure() {
|
|||
--cc="${CC} -std=gnu99" \
|
||||
--cxx="${CXX} -std=gnu99" \
|
||||
--enable-cross-compile \
|
||||
--disable-stripping \
|
||||
--disable-avx
|
||||
--enable-gpl \
|
||||
--enable-libx264 \
|
||||
--disable-stripping \
|
||||
--disable-avx
|
||||
}
|
||||
|
||||
install() {
|
||||
|
|
Loading…
Add table
Reference in a new issue