blob: 837e7596be0851862e4ea1a745ca30f21fcacb15 (
plain)
1 # Description: A library for configuring and customizing font access
2 # URL: http://fontconfig.org/wiki/
3 # Maintainer: Jose V Beneyto, sepen at crux dot nu
4 # Packager: Tilman Sauerbeck, tilman at crux dot nu
5 # Depends on: freetype, expat
6
7 name=fontconfig
8 version=2.10.2
9 release=1
10 source=(http://fontconfig.org/release/$name-$version.tar.bz2)
11
12 build() {
13 cd $name-$version
14
15 sed -e 's|^confdir=.*|confdir=@baseconfigdir@|' -i $name.pc.in
16
17 ./configure --prefix=/usr \
18 --sysconfdir=/etc \
19 --mandir=/usr/man \
20 --localstatedir=/var \
21 --with-xmldir=/etc/fonts \
22 --with-templatedir=/etc/fonts/conf.avail
23
24 make
25 make DESTDIR=$PKG install
26
27 # Enabling autohinting by default
28 pushd $PKG/etc/fonts/conf.d
29 ln -sf /etc/fonts/conf.avail/10-autohint.conf
30 popd
31
32 rm -f $PKG/etc/fonts/conf.d/README
33 rm -r $PKG/usr/share
34 }
|