opt/harfbuzz/Pkgfile
Fredrik Rinnestam 83b84dad9d harfbuzz: 2.6.7
2020-06-06 19:32:20 +02:00

25 lines
542 B
Plaintext

# Description: An OpenType text shaping engine
# URL: http://www.freedesktop.org/wiki/Software/HarfBuzz
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
# Depends on: cairo
name=harfbuzz
version=2.6.7
release=1
source=(https://github.com/harfbuzz/harfbuzz/releases/download/$version/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--with-glib \
--with-freetype \
--with-cairo \
--with-icu=no \
--with-graphite2=auto
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share
}