forked from ports/compat-32
28 lines
610 B
Plaintext
28 lines
610 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.6.7
|
|
release=1
|
|
source=(https://github.com/harfbuzz/harfbuzz/releases/download/$version/harfbuzz-$version.tar.xz)
|
|
|
|
build() {
|
|
cd ${name%-*}-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
--with-glib \
|
|
--with-freetype \
|
|
--with-cairo \
|
|
--with-icu=no \
|
|
--without-graphite2
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{bin,include,share}
|
|
}
|