20 lines
543 B
Plaintext
20 lines
543 B
Plaintext
# Description: An OpenType text shaping engine
|
|
# URL: https://github.com/harfbuzz/harfbuzz
|
|
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
|
|
# Depends on: cairo gobject-introspection meson ninja
|
|
|
|
name=harfbuzz
|
|
version=2.7.4
|
|
release=1
|
|
source=(https://github.com/harfbuzz/harfbuzz/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
meson setup build $name-$version \
|
|
--prefix=/usr \
|
|
-D benchmark=disabled \
|
|
-D docs=disabled \
|
|
-D graphite=auto
|
|
meson compile -C build -j ${JOBS:-1}
|
|
DESTDIR=$PKG meson install -C build
|
|
}
|