HarfBuzz text shaping engine
http://harfbuzz.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
784 B
27 lines
784 B
#!/bin/bash |
|
set -e |
|
|
|
meson --cross-file=.ci/win32-cross-file.txt \ |
|
--wrap-mode=forcefallback \ |
|
--buildtype=release \ |
|
-Dtests=disabled \ |
|
-Dcairo=enabled \ |
|
-Dcairo:fontconfig=disabled \ |
|
-Dglib=enabled \ |
|
-Dfreetype=enabled \ |
|
-Dgdi=enabled \ |
|
-Ddirectwrite=enabled \ |
|
-Dcairo=enabled \ |
|
win32build \ |
|
$@ |
|
|
|
ninja -Cwin32build -j3 # building with all the cores won't work fine with CricleCI for some reason |
|
|
|
rm -rf win32build/harfbuzz-win32 |
|
mkdir win32build/harfbuzz-win32 |
|
cp win32build/util/hb-*.exe win32build/harfbuzz-win32 |
|
find win32build -name '*.dll' -exec cp {} win32build/harfbuzz-win32 \; |
|
i686-w64-mingw32-strip win32build/harfbuzz-win32/*.{dll,exe} |
|
rm -f harfbuzz-win32.zip |
|
(cd win32build && zip -r ../harfbuzz-win32.zip harfbuzz-win32) |
|
echo "harfbuzz-win32.zip is ready."
|
|
|