opt/harfbuzz/Pkgfile

25 lines
529 B
Plaintext

# Description: An OpenType text shaping engine
# URL: https://github.com/harfbuzz/harfbuzz
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
# Depends on: cairo
name=harfbuzz
version=2.6.8
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
}