blob: 8db09d8e7707b00338cac4dad261c9c63834d5f2 (
plain)
1 # Description: A library for configuring and customizing font access
2 # URL: http://fontconfig.org/wiki/
3 # Maintainer: Tilman Sauerbeck, tilman at crux dot nu
4 # Depends on: freetype, expat
5
6 name=fontconfig
7 version=2.8.0
8 release=1
9 source=(http://fontconfig.org/release/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 ./configure --prefix=/usr \
15 --sysconfdir=/etc \
16 --mandir=/usr/man \
17 --localstatedir=/var
18
19 make
20 make DESTDIR=$PKG install
21
22 # Enabling autohinting by default
23 pushd $PKG/etc/fonts/conf.d
24 ln -s ../conf.avail/10-autohint.conf
25 popd
26
27 rm -f $PKG/etc/fonts/conf.d/README
28 rm -r $PKG/usr/share
29 }
|