CRUX PPC
A lightweight GNU/Linux distribution for PowerPC!
Subversion Repository
Parent Directory
|
Revision Log
Revision 201 -
(hide annotations)
Sun Oct 4 15:01:40 2009 UTC (3 years, 7 months ago) by cjg
File size: 708 byte(s)
Sun Oct 4 15:01:40 2009 UTC (3 years, 7 months ago) by cjg
File size: 708 byte(s)
importing opt
| 1 | cjg | 201 | # 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.6.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.avail/README | ||
| 28 | rm -rf $PKG/usr/share | ||
| 29 | } |