blob: 2094db2701f6c1e56ff09e4a624f6fafcf269f8a (
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.12.0
9 release=1
10 source=(http://fontconfig.org/release/$name-$version.tar.bz2)
11
12 build() {
13 cd $name-$version
14
15 ./configure --prefix=/usr \
16 --sysconfdir=/etc \
17 --localstatedir=/var \
18 --with-xmldir=/etc/fonts \
19 --with-templatedir=/etc/fonts/conf.avail
20
21 make
22 make DESTDIR=$PKG install
23
24 # Enabling autohinting by default
25 pushd $PKG/etc/fonts/conf.d
26 ln -sf /etc/fonts/conf.avail/10-autohint.conf
27 popd
28
29 rm -f $PKG/etc/fonts/conf.d/README
30 rm -r $PKG/usr/share
31 }
|