blob: a4e60a294aa9302534000ce73407e0dc40a990b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Maintainer: Sebastian Stammler <stammler.s@gmail.com>
#
# Now pacman 4.1 ready!
# For improvements/fixes to this package, please send me a
# pull request on github: https://github.com/sebastianst/aur-packages
#
# Contributor: Sarkasper <echo a2FzcGVyLm1lbnRlbkBnbXguY29tCg== | base64 -d>
# Contributor: Daniel Micay <danielmicay@gmail.com>
# Contributor: Michalis Georgiou <mechmg93@gmail.comr>
# Contributor: Alexander De Sousa <archaur.xandy21@spamgourmet.com>
pkgname=ttf-google-fonts-git
pkgver=20130818
pkgrel=1
pkgdesc="Google Fonts catalogue."
arch=('any')
url="https://github.com/w0ng/googlefontdirectory"
license=('various')
depends=('fontconfig' 'xorg-fonts-encodings')
makedepends=(git)
conflicts=('googlefontdirectory'
'jsmath-fonts'
'lohit-fonts'
'oldstand-font'
'otf-goudy'
'ttf-andika'
'ttf-anonymous-pro'
'ttf-cantarell'
'ttf-cardo'
'ttf-chromeos-fonts'
'ttf-droid'
'ttf-google-webfonts-hg'
'ttf-inconsolata'
'ttf-kimberly_geswein_print'
'ttf-nova'
'ttf-oldstandard'
'ttf-pt-mono'
'ttf-pt-sans'
'ttf-ptsans'
'ttf-roboto'
'ttf-sil-fonts'
'ttf-sortsmillgoudy'
'ttf-source-code-pro'
'ttf-source-sans-pro'
'ttf-ubuntu-font-family'
'ttf-vollkorn'
'ttf-google-webfonts'
'ttf-oxygen'
'ttf-opensans'
'ttf-medievalsharp'
'ttf-google-webfonts-git'
'cantarell-fonts'
'ttf-comfortaa')
provides=("${conflicts[@]}")
source=("git://github.com/w0ng/googlefontdirectory.git")
md5sums=('SKIP')
install=font.install
# git variables
_gitname="googlefontdirectory"
pkgver() {
cd "$srcdir/$_gitname"
git log -1 --format="%cd" --date=short | sed 's|-||g'
}
package() {
cd "$srcdir"
install -dm755 "$pkgdir/usr/share/fonts/TTF"
find . -type f -name \*.ttf -exec install -Dm644 '{}' \
"$pkgdir/usr/share/fonts/TTF" \;
}
|