updated on Thu Jan 19 04:14:35 UTC 2012
[aur-mirror.git] / webfonts / PKGBUILD
blob254a5932a9e0430ac284309a54f7c09518b1f8b9
1 # Maintainer: Daniel Nümm <dn@alphalog.ae>
2 pkgname=webfonts
3 pkgver=1.0
4 pkgrel=1
5 depends=('fontconfig' 'xorg-font-utils')
6 makedepends=('mercurial')
7 pkgdesc="Over 200 Fonts from the Google Web Font Directory."
8 arch=('any')
9 url="http://www.google.com/webfonts"
10 license=('unknown')
11 conflicts=('')
12 install=$pkgname.install
14 _hgroot="https://googlefontdirectory.googlecode.com/hg/"
15 _hgname="googlefontdirectory"
17 build()
19    cd "$srcdir"
20    msg "Connecting to HG server...."
21   
22    if [ -d $_hgname ] ; then
23       cd $_hgname && hg pull
24       msg "The local files are updated."
25    else
26       hg clone $_hgroot $_hgname
27    fi
29    msg "HG checkout done or server timeout"
30    msg "Starting make..."
33   mkdir -p $pkgdir/usr/share/fonts/TTF
34   find $srcdir/$hgname/ -iname '*.ttf'  -exec cp '{}' $pkgdir/usr/share/fonts/TTF/  \;