forked from ports/compat-32
26 lines
666 B
Plaintext
26 lines
666 B
Plaintext
# Description: An OpenType text shaping engine
|
|
# URL: https://www.freedesktop.org/wiki/Software/HarfBuzz
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: cairo-32 harfbuzz
|
|
|
|
name=harfbuzz-32
|
|
version=2.8.1
|
|
release=1
|
|
source=(https://github.com/harfbuzz/harfbuzz/archive/$version/${name%-*}-$version.tar.gz)
|
|
|
|
build() {
|
|
meson setup build ${name%-*}-$version \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
-D benchmark=disabled \
|
|
-D docs=disabled \
|
|
-D graphite=disabled \
|
|
-D icu=disabled \
|
|
-D introspection=disabled
|
|
|
|
meson compile -C build -j ${JOBS:-1}
|
|
DESTDIR=$PKG meson install -C build
|
|
|
|
rm -r $PKG/usr/{bin,include}
|
|
}
|