Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/004-freetype-2.4.3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# freetype-2.4.3.sh by Naomi Peori ([email protected])

## 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
Expand Down
4 changes: 2 additions & 2 deletions scripts/012-libxml2-2.7.8.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# libxml2-2.7.8.sh by Naomi Peori ([email protected])

## 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 .
Expand Down