repo/extra/freetype-harfbuzz/build

50 lines
1.0 KiB
Plaintext
Raw Normal View History

#!/bin/sh -e
2023-03-02 14:40:00 +00:00
export DESTDIR="$1"
build_freetype() (
cd freetype
2021-08-08 18:41:20 +00:00
meson \
--prefix=/usr \
2021-08-08 18:41:20 +00:00
-Ddefault_library=both \
-Dbzip2=disabled \
-Dzlib=disabled \
"$@" \
. output
2021-08-08 18:41:20 +00:00
ninja -C output
ninja -C output install
)
build_harfbuzz() (
cd harfbuzz
meson \
--prefix=/usr \
-Ddefault_library=both \
-Dglib=disabled \
-Dfreetype=enabled \
-Dgobject=disabled \
-Dcairo=disabled \
-Dicu=disabled \
-Dbenchmark=disabled \
-Dtests=disabled \
. output
ninja -C output
ninja -C output install
)
# Point Freetype to the Harfbuzz files.
2022-06-27 19:26:11 +00:00
export CPPFLAGS="$CPPFLAGS -I$DESTDIR/usr/include/harfbuzz"
export LDFLAGS="$LDFLAGS -L$DESTDIR/usr/lib"
2022-09-27 17:20:09 +00:00
export PKG_CONFIG_PATH="$DESTDIR/usr/lib/pkgconfig"
2021-08-08 18:41:20 +00:00
# Point Harfbuzz to the Freetype files.
2022-06-27 19:26:11 +00:00
export CPPFLAGS="$CPPFLAGS -I$DESTDIR/usr/include/freetype2"
2021-08-08 18:41:20 +00:00
build_freetype -Dharfbuzz=disabled
build_harfbuzz
build_freetype -Dharfbuzz=enabled --reconfigure