2021-05-08 06:23:29 +03:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
2022-06-03 17:25:21 +03:00
|
|
|
port='harfbuzz'
|
|
|
|
version='4.3.0'
|
|
|
|
files="https://github.com/harfbuzz/harfbuzz/releases/download/${version}/harfbuzz-${version}.tar.xz harfbuzz-${version}.tar.xz a49628f4c4c8e6d8df95ef44935a93446cf2e46366915b0e3ca30df21fffb530"
|
|
|
|
useconfigure='true'
|
|
|
|
auth_type='sha256'
|
2021-09-27 01:16:18 +03:00
|
|
|
depends=("freetype" "libicu")
|
|
|
|
configopts=("-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt" "-DHB_HAVE_FREETYPE=ON" "-DHB_HAVE_ICU=ON")
|
2021-05-08 06:23:29 +03:00
|
|
|
|
|
|
|
configure() {
|
|
|
|
run mkdir -p build
|
2022-03-09 18:00:06 +03:00
|
|
|
run sh -c "cd build && cmake .. ${configopts[@]}"
|
2021-05-08 06:23:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2021-09-27 01:16:18 +03:00
|
|
|
run sh -c "cd build && make ${makeopts[@]}"
|
2021-05-08 06:23:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
install() {
|
|
|
|
run sh -c "cd build && make install"
|
|
|
|
}
|