blob: 3c6a50803239084ce90248f64c5d8fa2bb59acce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: GCMarvin <GCMarvin@users.noreply.github.com>
# Contributor: Johannes Löthberg <johannes@kyriasis.com>
# Contributor: Daniel Greve <greve.daniel.l@gmail.com>
pkgname=ttf-google-sans
pkgver=1
pkgrel=4
pkgdesc="Google's signature family of fonts"
url='https://flutter.googlesource.com/gallery-assets'
arch=('any')
makedepends=('git')
source=('https://flutter.googlesource.com/gallery-assets/+archive/refs/heads/master/lib/fonts.tar.gz')
md5sums=('SKIP')
package() {
install -Dm644 "${srcdir}/GoogleSans"*".ttf" -t "${pkgdir}/usr/share/fonts/TTF"
}
|