From 3e0af5621865c86e819b6d305cb3c55265ada6ac Mon Sep 17 00:00:00 2001 From: Nathan Trujillo <35079898+useafterfree@users.noreply.github.com> Date: Wed, 11 Oct 2023 13:19:09 -0700 Subject: [PATCH 1/2] Update build-ffmpeg to include freetype 2.11.1 --- build-ffmpeg | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/build-ffmpeg b/build-ffmpeg index 2beab23d..f4daa03f 100755 --- a/build-ffmpeg +++ b/build-ffmpeg @@ -855,6 +855,16 @@ if build "libsdl" "2.26.3"; then build_done "libsdl" "2.26.3" fi +if build "FreeType2" "2.11.1"; then + download "https://downloads.sourceforge.net/freetype/freetype-2.11.1.tar.xz" + execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static + execute make -j $MJOBS + execute make install + build_done "FreeType2" "2.11.1" +fi + +CONFIGURE_OPTIONS+=("--enable-libfreetype") + if $NONFREE_AND_GPL; then if build "srt" "1.5.1"; then download "https://github.com/Haivision/srt/archive/v1.5.1.tar.gz" "srt-1.5.1.tar.gz" From f8460e0afefd158c086e0698b31c24be0417df64 Mon Sep 17 00:00:00 2001 From: Nathan Trujillo <35079898+useafterfree@users.noreply.github.com> Date: Wed, 11 Oct 2023 13:23:27 -0700 Subject: [PATCH 2/2] Fix opencore URL --- build-ffmpeg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-ffmpeg b/build-ffmpeg index f4daa03f..fae640ab 100755 --- a/build-ffmpeg +++ b/build-ffmpeg @@ -723,7 +723,7 @@ if command_exists "python3"; then fi if build "opencore" "0.1.6"; then - download "https://netactuate.dl.sourceforge.net/project/opencore-amr/opencore-amr/opencore-amr-0.1.6.tar.gz" "opencore-amr-0.1.6.tar.gz" + download "https://sourceforge.net/projects/opencore-amr/files/opencore-amr/opencore-amr-0.1.5.tar.gz/download" "opencore-amr-0.1.6.tar.gz" execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static execute make -j $MJOBS execute make install