blob: fd661a16ace86529d65ccf8b12117457648fe8e9 (
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
|
# Maintainer: RhiobeT (Pierre Jeanjean) <rhiobet@gmail.com>
pkgname=amaranth-font
_gitname=amaranth
pkgver=1.0.0
pkgrel=5
pkgdesc="A friendly upright italic design with a slight contrast and distinctive curves"
arch=('any')
url="https://fonts.google.com/specimen/Amaranth"
license=('custom:OFL')
makedepends=(
git
)
source=(
amaranth::git+https://github.com/googlefonts/amaranth
)
sha256sums=(
SKIP
)
package () {
cd "$srcdir/$_gitname"
install -Dm 644 fonts/ttf/*.ttf -t "${pkgdir}/usr/share/fonts/amaranth/"
install -Dm 644 "OFL.txt" -t "${pkgdir}/usr/share/licenses/${pkgname}/"
}
|