opt/freetype/Pkgfile

23 lines
491 B
Plaintext

# Description: A free and portable TrueType font rendering engine
# URL: https://www.freetype.org
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: libpng
name=freetype
version=2.10.4
release=1
source=(http://download.savannah.gnu.org/releases/$name/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--with-zlib \
--with-harfbuzz=no \
--enable-freetype-config # w/o breaks grub2
make
make DESTDIR=$PKG install
}