opt/fontconfig/Pkgfile

33 lines
856 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/
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: Tilman Sauerbeck, tilman at crux dot nu
# Depends on: freetype, expat
2006-03-12 11:46:27 +01:00
name=fontconfig
version=2.11.1
2012-11-29 14:49:05 +01:00
release=1
2012-07-17 10:45:45 +02:00
source=(http://fontconfig.org/release/$name-$version.tar.bz2)
2006-03-12 11:46:27 +01:00
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/man \
2012-07-17 10:45:45 +02:00
--localstatedir=/var \
--with-xmldir=/etc/fonts \
--with-templatedir=/etc/fonts/conf.avail
2006-03-12 11:46:27 +01:00
make
make DESTDIR=$PKG install
# Enabling autohinting by default
pushd $PKG/etc/fonts/conf.d
2012-07-17 10:45:45 +02:00
ln -sf /etc/fonts/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
}