aboutsummaryrefslogtreecommitdiff
path: root/xorg/freetype-harfbuzz/build
diff options
context:
space:
mode:
Diffstat (limited to 'xorg/freetype-harfbuzz/build')
-rwxr-xr-xxorg/freetype-harfbuzz/build17
1 files changed, 10 insertions, 7 deletions
diff --git a/xorg/freetype-harfbuzz/build b/xorg/freetype-harfbuzz/build
index 88ad58f0..f7768ed0 100755
--- a/xorg/freetype-harfbuzz/build
+++ b/xorg/freetype-harfbuzz/build
@@ -14,16 +14,19 @@ build_freetype() (
)
build_harfbuzz() (
+ export DESTDIR="$1"
cd harfbuzz
- ./configure \
+ meson \
--prefix=/usr \
- --with-glib=yes \
- --enable-static \
- --with-icu=no
-
- make
- make DESTDIR="$1" install
+ -Dglib=enabled \
+ -Ddefault_library=static \
+ -Dicu=disabled \
+ -Dbenchmark=disabled \
+ . output
+
+ ninja -C output
+ ninja -C output install
)
build_freetype "$1" no