opt/harfbuzz/Pkgfile

22 lines
596 B
Plaintext
Raw Normal View History

2012-12-04 18:09:54 +01:00
# Description: An OpenType text shaping engine
2020-06-25 12:02:29 +02:00
# URL: https://github.com/harfbuzz/harfbuzz
2021-01-23 12:59:06 +01:00
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: cairo gobject-introspection meson ninja
# Optional: graphite2 icu
2012-12-04 18:09:54 +01:00
name=harfbuzz
2021-05-04 10:47:11 +02:00
version=2.8.1
2020-12-30 14:04:24 +01:00
release=1
2020-07-25 20:58:50 +02:00
source=(https://github.com/harfbuzz/harfbuzz/archive/$version/$name-$version.tar.gz)
2012-12-04 18:09:54 +01:00
build() {
2020-12-30 14:04:24 +01:00
meson setup build $name-$version \
--prefix=/usr \
2021-01-23 12:59:06 +01:00
--buildtype=plain \
2020-12-30 14:04:24 +01:00
-D benchmark=disabled \
-D docs=disabled \
-D graphite=auto
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
2012-12-04 18:09:54 +01:00
}