blob: 742ba7412725c36fb190f01a28f7430db77eab12 (
plain)
1 # Description: A library for configuring and customizing font access
2 # URL: https://www.freedesktop.org/wiki/Software/fontconfig/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Depends on: freetype expat
5
6 name=fontconfig
7 version=2.13.1
8 release=1
9 source=(https://fontconfig.org/release/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13
14 ./configure --prefix=/usr \
15 --sysconfdir=/etc \
16 --localstatedir=/var \
17 --with-xmldir=/etc/fonts \
18 --with-templatedir=/etc/fonts/conf.avail
19
20 make
21 make DESTDIR=$PKG install
22
23 # Enabling autohinting by default
24 pushd $PKG/etc/fonts/conf.d
25 ln -sf /etc/fonts/conf.avail/10-autohint.conf
26 popd
27
28 rm -f $PKG/etc/fonts/conf.d/README
29 rm -r $PKG/usr/share/doc
30 rm -r $PKG/usr/share/locale
31 }
|