2019-08-04 09:26:52 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2019-08-04 10:54:25 -06:00
|
|
|
build_freetype() (
|
|
|
|
cd freetype
|
2019-08-04 09:26:52 -06:00
|
|
|
|
2021-08-08 12:41:20 -06:00
|
|
|
meson \
|
2019-08-04 09:26:52 -06:00
|
|
|
--prefix=/usr \
|
2021-08-08 12:41:20 -06:00
|
|
|
-Ddefault_library=both \
|
|
|
|
-Dbzip2=disabled \
|
|
|
|
-Dzlib=disabled \
|
|
|
|
"$@" \
|
|
|
|
. output
|
2019-08-04 09:26:52 -06:00
|
|
|
|
2021-08-08 12:41:20 -06:00
|
|
|
ninja -C output
|
|
|
|
ninja -C output install
|
2019-08-04 09:26:52 -06:00
|
|
|
)
|
|
|
|
|
2019-08-04 10:54:25 -06:00
|
|
|
build_harfbuzz() (
|
|
|
|
cd harfbuzz
|
2019-08-04 09:26:52 -06:00
|
|
|
|
2020-07-28 05:14:10 -06:00
|
|
|
meson \
|
2020-07-27 07:45:56 -06:00
|
|
|
--prefix=/usr \
|
2021-08-08 12:41:20 -06:00
|
|
|
-Dpkg_config_path="$DESTDIR/usr/lib/pkgconfig" \
|
2020-07-28 05:14:10 -06:00
|
|
|
-Ddefault_library=both \
|
2022-03-06 06:12:55 -07:00
|
|
|
-Dglib=enabled \
|
2020-07-28 05:14:10 -06:00
|
|
|
-Dfreetype=enabled \
|
2021-08-08 11:19:30 -06:00
|
|
|
-Dgobject=disabled \
|
2020-07-28 05:14:10 -06:00
|
|
|
-Dcairo=disabled \
|
|
|
|
-Dicu=disabled \
|
|
|
|
-Dbenchmark=disabled \
|
|
|
|
-Dtests=disabled \
|
|
|
|
. output
|
|
|
|
|
|
|
|
ninja -C output
|
|
|
|
ninja -C output install
|
2019-08-04 09:26:52 -06:00
|
|
|
)
|
|
|
|
|
2019-08-04 10:54:25 -06:00
|
|
|
# Point Freetype to the Harfbuzz files.
|
2021-08-08 12:41:20 -06:00
|
|
|
export CFLAGS="$CFLAGS -I$DESTDIR/usr/include/harfbuzz"
|
|
|
|
export CFLAGS="$CFLAGS -L$DESTDIR/usr/lib "
|
|
|
|
export PKG_CONFIG_PATH=$DESTDIR/usr/lib/pkgconfig
|
|
|
|
|
|
|
|
# Point Harfbuzz to the Freetype files.
|
|
|
|
export CXXFLAGS="$CXXFLAGS -I$DESTDIR/usr/include/freetype2"
|
|
|
|
export CXXFLAGS="$CXXFLAGS -L$DESTDIR/usr/lib"
|
2019-08-04 10:54:25 -06:00
|
|
|
|
2021-08-08 12:41:20 -06:00
|
|
|
build_freetype -Dharfbuzz=disabled
|
|
|
|
build_harfbuzz
|
|
|
|
build_freetype -Dharfbuzz=enabled --reconfigure
|