1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 07:27:44 +00:00

Ports: Fix building harfbuzz against freetype

This commit is contained in:
Dominika Liberda 2023-07-02 07:48:00 +02:00 committed by Jelle Raaijmakers
parent ff402b1b42
commit 815fc034ff
3 changed files with 37 additions and 1 deletions

View file

@ -5,7 +5,12 @@ files="https://github.com/harfbuzz/harfbuzz/releases/download/${version}/harfbuz
useconfigure='true'
auth_type='sha256'
depends=("freetype" "libicu")
configopts=("-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt" "-DHB_HAVE_FREETYPE=ON" "-DHB_HAVE_ICU=ON")
configopts=(
"-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt"
'-DHB_HAVE_FREETYPE=ON'
'-DHB_HAVE_ICU=ON'
'-DCMAKE_C_FLAGS=-lfreetype'
)
configure() {
run mkdir -p build