blob: 4fdb939739f6b67cec2dc1edbe09f15bcce369e9 (
plain)
1 # Description: An OpenType text shaping engine
2 # URL: https://github.com/harfbuzz/harfbuzz
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Depends on: cairo gobject-introspection meson ninja
5 # Optional: graphite2 icu
6
7 name=harfbuzz
8 version=2.8.1
9 release=1
10 source=(https://github.com/harfbuzz/harfbuzz/archive/$version/$name-$version.tar.gz)
11
12 build() {
13 meson setup build $name-$version \
14 --prefix=/usr \
15 --buildtype=plain \
16 -D benchmark=disabled \
17 -D docs=disabled \
18 -D graphite=auto
19 meson compile -C build -j ${JOBS:-1}
20 DESTDIR=$PKG meson install -C build
21 }
|