From cc25137eaec92bcbe6c20632c644bfa9a2369a6a Mon Sep 17 00:00:00 2001 From: sfan5 Date: Sun, 15 Nov 2020 17:29:06 +0100 Subject: ci: fix mingw build by adding harfbuzz --- ci/build-mingw64.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/ci/build-mingw64.sh b/ci/build-mingw64.sh index 77a7c99cbb..574c5c3fd8 100755 --- a/ci/build-mingw64.sh +++ b/ci/build-mingw64.sh @@ -119,6 +119,17 @@ if [ ! -e "$prefix_dir/lib/libfribidi.dll.a" ]; then popd fi +## harfbuzz +if [ ! -e "$prefix_dir/lib/libharfbuzz.dll.a" ]; then + ver=2.7.2 + gettar "https://github.com/harfbuzz/harfbuzz/releases/download/${ver}/harfbuzz-${ver}.tar.xz" + builddir harfbuzz-${ver} + ../configure --host=$TARGET $commonflags --with-icu=no + makeplusinstall + popd + rm "$prefix_dir"/lib/*.la # fuck off +fi + ## libass if [ ! -e "$prefix_dir/lib/libass.dll.a" ]; then [ -d libass ] || $gitclone https://github.com/libass/libass.git -- cgit v1.2.3