blob: f3a5a49c9c747e3177aa59c4f266e51e37762e18 (
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.11.1
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 --mandir=/usr/man \
18 --localstatedir=/var \
19 --with-xmldir=/etc/fonts \
20 --with-templatedir=/etc/fonts/conf.avail
21
22 make
23 make DESTDIR=$PKG install
24
25 # Enabling autohinting by default
26 pushd $PKG/etc/fonts/conf.d
27 ln -sf /etc/fonts/conf.avail/10-autohint.conf
28 popd
29
30 rm -f $PKG/etc/fonts/conf.d/README
31 rm -r $PKG/usr/share
32 }
|