Build FreeType 2.14.1 on macOS 13, instead of using 2.14.0 from brew

This commit is contained in:
Andrew Murray 2025-09-20 20:16:50 +10:00
parent 92e671d797
commit 6916a73b57

View File

@ -4,11 +4,19 @@ set -e
if [[ "$ImageOS" == "macos13" ]]; then
brew uninstall gradle maven
wget https://raw.githubusercontent.com/python-pillow/pillow-depends/main/freetype-2.14.1.tar.gz
tar -xvzf freetype-2.14.1.tar.gz
(cd freetype-2.14.1 \
&& ./configure \
&& make -j4 \
&& make install)
else
brew install freetype
fi
brew install \
aom \
dav1d \
freetype \
ghostscript \
jpeg-turbo \
libimagequant \