opt/harfbuzz/Pkgfile

22 lines
596 B
Plaintext

# Description: An OpenType text shaping engine
# URL: https://github.com/harfbuzz/harfbuzz
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: cairo gobject-introspection meson ninja
# Optional: graphite2 icu
name=harfbuzz
version=2.8.0
release=1
source=(https://github.com/harfbuzz/harfbuzz/archive/$version/$name-$version.tar.gz)
build() {
meson setup build $name-$version \
--prefix=/usr \
--buildtype=plain \
-D benchmark=disabled \
-D docs=disabled \
-D graphite=auto
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
}