opt/fontconfig/Pkgfile

30 lines
703 B
Plaintext
Raw Normal View History

2006-03-12 11:46:27 +01:00
# Description: A library for configuring and customizing font access
# URL: http://fontconfig.org/wiki/
2006-08-15 21:17:27 +02:00
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
2006-03-12 11:46:27 +01:00
# Depends on: freetype, expat
name=fontconfig
2009-11-22 13:53:42 +01:00
version=2.8.0
2006-03-12 11:46:27 +01:00
release=1
source=(http://fontconfig.org/release/$name-$version.tar.gz)
build() {
cd $name-$version
2006-03-12 11:46:27 +01:00
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/man \
--localstatedir=/var
2006-03-12 11:46:27 +01:00
make
make DESTDIR=$PKG install
# Enabling autohinting by default
pushd $PKG/etc/fonts/conf.d
ln -s ../conf.avail/10-autohint.conf
popd
2008-06-04 15:07:34 +02:00
rm -f $PKG/etc/fonts/conf.d/README
rm -r $PKG/usr/share
2006-03-12 11:46:27 +01:00
}