From af4535e5c09e1a117b8e2bbaf2cdd2ca67d965d3 Mon Sep 17 00:00:00 2001 From: mdukat Date: Tue, 15 Jul 2025 00:54:53 +0200 Subject: [PATCH] FIX: links for freetype and libxml2 --- scripts/004-freetype-2.4.3.sh | 2 +- scripts/012-libxml2-2.7.8.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/004-freetype-2.4.3.sh b/scripts/004-freetype-2.4.3.sh index fdd15a5..fd7bf97 100755 --- a/scripts/004-freetype-2.4.3.sh +++ b/scripts/004-freetype-2.4.3.sh @@ -2,7 +2,7 @@ # freetype-2.4.3.sh by Naomi Peori (naomi@peori.ca) ## Download the source code. -wget --continue http://download.savannah.gnu.org/releases/freetype/freetype-old/freetype-2.4.3.tar.gz +wget --continue https://download-mirror.savannah.gnu.org/releases/freetype/freetype-old/freetype-2.4.3.tar.gz ## Download an up-to-date config.guess and config.sub if [ ! -f config.guess ]; then wget --continue http://git.savannah.gnu.org/cgit/config.git/plain/config.guess; fi diff --git a/scripts/012-libxml2-2.7.8.sh b/scripts/012-libxml2-2.7.8.sh index 178cd4f..821c82b 100755 --- a/scripts/012-libxml2-2.7.8.sh +++ b/scripts/012-libxml2-2.7.8.sh @@ -2,14 +2,14 @@ # libxml2-2.7.8.sh by Naomi Peori (naomi@peori.ca) ## Download the source code. -wget --continue http://xmlsoft.org/download/libxml2-2.7.8.tar.gz +wget --continue https://download.gnome.org/sources/libxml2/2.7/libxml2-2.7.8.tar.xz ## Download an up-to-date config.guess and config.sub if [ ! -f config.guess ]; then wget --continue http://git.savannah.gnu.org/cgit/config.git/plain/config.guess; fi if [ ! -f config.sub ]; then wget --continue http://git.savannah.gnu.org/cgit/config.git/plain/config.sub; fi ## Unpack the source code. -rm -Rf libxml2-2.7.8 && tar xfvz libxml2-2.7.8.tar.gz && cd libxml2-2.7.8 +rm -Rf libxml2-2.7.8 && tar xfvJ libxml2-2.7.8.tar.xz && cd libxml2-2.7.8 ## Replace config.guess and config.sub cp ../config.guess ../config.sub .