Skip to content

Commit 4bcdaf1

Browse files
committed
Build FreeType 2.14.1 on macOS 13, instead of using 2.14.0 from brew
1 parent dded7fd commit 4bcdaf1

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/macos-install.sh

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,19 @@ set -e
44

55
if [[ "$ImageOS" == "macos13" ]]; then
66
brew uninstall gradle maven
7+
8+
wget https://download.savannah.gnu.org/releases/freetype/freetype-2.14.1.tar.gz
9+
tar -xvzf freetype-2.14.1.tar.gz
10+
(cd freetype-2.14.1 \
11+
&& ./configure \
12+
&& make -j4 \
13+
&& make install)
14+
else
15+
brew install freetype
716
fi
817
brew install \
918
aom \
1019
dav1d \
11-
freetype \
1220
ghostscript \
1321
jpeg-turbo \
1422
libimagequant \

0 commit comments

Comments
 (0)