26 lines
681 B
Plaintext
26 lines
681 B
Plaintext
# Description: A library for configuring and customizing font access
|
|
# URL: http://fontconfig.org/wiki/
|
|
# 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.13.1
|
|
release=1
|
|
source=(https://fontconfig.org/release/fontconfig-$version.tar.bz2)
|
|
|
|
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}
|
|
}
|