compat-32/harfbuzz-32/Pkgfile

26 lines
666 B
Plaintext
Raw Normal View History

# Description: An OpenType text shaping engine
2017-03-14 03:57:39 +01:00
# URL: https://www.freedesktop.org/wiki/Software/HarfBuzz
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
2019-08-27 13:48:19 +02:00
# Depends on: cairo-32 harfbuzz
name=harfbuzz-32
2021-03-17 09:36:16 +01:00
version=2.8.0
release=1
2020-07-26 11:38:36 +02:00
source=(https://github.com/harfbuzz/harfbuzz/archive/$version/${name%-*}-$version.tar.gz)
build() {
2021-01-02 15:18:28 +01:00
meson setup build ${name%-*}-$version \
2013-03-25 16:09:37 +01:00
--prefix=/usr \
--libdir=/usr/lib32 \
2021-01-02 15:18:28 +01:00
-D benchmark=disabled \
-D docs=disabled \
-D graphite=disabled \
-D icu=disabled \
-D introspection=disabled
2021-01-02 15:18:28 +01:00
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
2020-07-26 11:38:36 +02:00
rm -r $PKG/usr/{bin,include}
}