blob: bd21a1819a38136c2ee7a8cd16a3ad0a8a66c932 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: Markus Weimar <mail@markusweimar.de>
pkgname=ttf-iosevka-etoile
pkgver=2.3.0
pkgrel=1
pkgdesc='Experimental, quasi-proportional, slab-serif family of Iosevka.'
arch=('any')
url='https://be5invis.github.io/Iosevka/'
license=('custom:OFL')
depends=('fontconfig' 'xorg-font-utils')
conflicts=('ttf-iosevka-pack')
source=("https://github.com/be5invis/Iosevka/releases/download/v${pkgver}/experimental-iosevka-etoile-${pkgver}.zip"
"${pkgname}-${pkgver}-${pkgrel}-LICENSE.md::https://raw.githubusercontent.com/be5invis/Iosevka/master/LICENSE.md")
sha256sums=('1844aa8221f91f5171ebe8f1b60b156179bef7752fec22848b588d897e523be1'
'ecfd74a1d6749bf509cee122870da0186bccfae446e3f6bc5faff253577ab000')
package() {
install -d ${pkgdir}/usr/share/fonts/${pkgname}
install -m644 ${srcdir}/ttf/*.ttf ${pkgdir}/usr/share/fonts/${pkgname}
install -D -m644 ${pkgname}-${pkgver}-${pkgrel}-LICENSE.md ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md
}
|