Skip to content

Commit

Permalink
Upgrade harfbuzz to 2.8.2 to fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
kintel committed Dec 26, 2022
1 parent 9f924cf commit 6489c27
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/macosx-build-dependencies.sh
Expand Up @@ -45,7 +45,7 @@ PACKAGES=(
"libffi REMOVE"
"freetype 2.9.1"
"ragel REMOVE"
"harfbuzz 2.3.1"
"harfbuzz 2.8.2"
"libzip 1.8.0"
"libxml2 REMOVE"
"libuuid 1.6.2"
Expand Down Expand Up @@ -767,10 +767,10 @@ build_harfbuzz()
echo "Building harfbuzz $version..."
cd "$BASEDIR"/src
rm -rf "harfbuzz-$version"
if [ ! -f "harfbuzz-$version.tar.gz" ]; then
curl -LO "https://www.freedesktop.org/software/harfbuzz/release/harfbuzz-$version.tar.bz2"
if [ ! -f "harfbuzz-$version.tar.xz" ]; then
curl -LO "https://github.com/harfbuzz/harfbuzz/releases/download/$version/harfbuzz-$version.tar.xz"
fi
tar xzf "harfbuzz-$version.tar.bz2"
tar xzf "harfbuzz-$version.tar.xz"
cd "harfbuzz-$version"

# Build each arch separately
Expand Down

0 comments on commit 6489c27

Please sign in to comment.