mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 11:10:08 -07:00
48 lines
1022 B
Bash
Executable File
48 lines
1022 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
build_freetype() (
|
|
cd freetype
|
|
|
|
meson \
|
|
--prefix=/usr \
|
|
-Ddefault_library=both \
|
|
-Dbzip2=disabled \
|
|
-Dzlib=disabled \
|
|
"$@" \
|
|
. output
|
|
|
|
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.
|
|
export CPPFLAGS="$CPPFLAGS -I$DESTDIR/usr/include/harfbuzz"
|
|
export LDFLAGS="$LDFLAGS -L$DESTDIR/usr/lib"
|
|
export PKG_CONFIG_PATH="$DESTDIR/usr/lib/pkgconfig"
|
|
|
|
# Point Harfbuzz to the Freetype files.
|
|
export CPPFLAGS="$CPPFLAGS -I$DESTDIR/usr/include/freetype2"
|
|
|
|
build_freetype -Dharfbuzz=disabled
|
|
build_harfbuzz
|
|
build_freetype -Dharfbuzz=enabled --reconfigure
|