Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # $Id: PKGBUILD 166327 2012-09-06 13:53:52Z andyrtr $
- # Maintainer: Jan de Groot <jgc@archlinux.org>
- pkgname=fontconfig
- pkgver=2.10.1
- pkgrel=2
- pkgdesc="A library for configuring and customizing font access"
- arch=(i686 x86_64)
- url="http://www.fontconfig.org/release/"
- license=('custom')
- depends=('expat' 'freetype2')
- options=('!libtool')
- install=fontconfig.install
- source=(http://www.fontconfig.org/release/$pkgname-$pkgver.tar.gz
- http://cgit.freedesktop.org/fontconfig/patch/?id=2837c63876b9b1f27d74aad51d45fc18d48f4652
- 29-replace-bitmap-fonts.conf)
- md5sums=('c94e380eea42f2f23ca9537035ef1899'
- '9a0e8d0e7a12922b1f7079747be7a075'
- 'f6b67e8cc79197ed6abd4701911e83da')
- build() {
- cd "$srcdir/$pkgname-$pkgver"
- # remove the multiple entries in test patch
- patch -p1 -R < ../\?id=2837c63876b9b1f27d74aad51d45fc18d48f4652
- # make sure there's no rpath trouble and sane .so versioning - FC and Gentoo do this as well
- libtoolize -f
- autoreconf -f
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --with-templatedir=/etc/fonts/conf.avail \
- --with-xmldir=/etc/fonts \
- --localstatedir=/var \
- --disable-static \
- --with-default-fonts=/usr/share/fonts \
- --with-add-fonts=/usr/share/fonts
- make
- }
- check() {
- cd "$srcdir/$pkgname-$pkgver"
- make -k check
- }
- package() {
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir" install
- # not upstream, not in FC and not in Gentoo, this should probably go upstream
- # meanwhile to satisfy pages like http://zipcon.net/~swhite/docs/computers/browsers/fonttest.html we bring it back
- install -m644 "$srcdir/29-replace-bitmap-fonts.conf" "$pkgdir/etc/fonts/conf.avail"
- pushd $pkgdir/etc/fonts/conf.d
- ln -s /etc/fonts/conf.avail/29-replace-bitmap-fonts.conf .
- popd
- #Install license
- install -m755 -d "$pkgdir/usr/share/licenses/$pkgname"
- install -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname"
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement