compat-32/fontconfig-32/Pkgfile

26 lines
706 B
Plaintext

# Description: A library for configuring and customizing font access
# URL: https://www.freedesktop.org/wiki/Software/fontconfig/
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
# Depends on: bzip2-32 expat-32 fontconfig freetype-32 util-linux-32
name=fontconfig-32
version=2.14.0
release=1
source=(https://fontconfig.org/release/fontconfig-$version.tar.xz)
build() {
cd fontconfig-$version
./configure --prefix=/usr \
--libdir=/usr/lib32 \
--sysconfdir=/etc \
--localstatedir=/var \
--with-xmldir=/etc/fonts \
--with-templatedir=/etc/fonts/conf.avail
make
make DESTDIR=$PKG install
rm -r $PKG/usr/{bin,include,share/man,share} $PKG/{etc,var}
}