We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dded7fd commit 4bcdaf1Copy full SHA for 4bcdaf1
1 file changed
.github/workflows/macos-install.sh
@@ -4,11 +4,19 @@ set -e
4
5
if [[ "$ImageOS" == "macos13" ]]; then
6
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
16
fi
17
brew install \
18
aom \
19
dav1d \
- freetype \
20
ghostscript \
21
jpeg-turbo \
22
libimagequant \
0 commit comments