aur-packages/ttf-iosevka-lyte/PKGBUILD

20 lines
872 B
Bash
Raw Normal View History

2021-11-03 14:27:42 -05:00
# Maintainer: Daniel Flanagan <daniel@lyte.dev>
pkgname=ttf-iosevka-lyte
2022-11-22 07:19:44 -06:00
pkgver=16.4.0
2021-11-03 14:27:42 -05:00
pkgrel=1
2022-11-22 07:19:44 -06:00
pkgdesc="lytedev's customized Iosevka font primarily for the Kitty terminal emulator"
2021-11-03 14:27:42 -05:00
arch=('any')
url="https://github.com/lytedev/Iosevka"
license=('SIL Open Font License v1.1')
2022-11-22 07:19:44 -06:00
source=("https://files.lyte.dev/iosevkalyte/rel/iosevkalyteterm-${pkgver}.tar.zstd"
"${pkgname}-${pkgver}-${pkgrel}-LICENSE.md::https://files.lyte.dev/iosevkalyte/rel/iosevkalyteterm-${pkgver}-LICENSE.md")
sha256sums=("655c95c58f7a39c13a7236f94107622fd0166a92ee1a8aa3742ad2aef76f9e8e"
"46ecadda73abf39cda76731a94fd357b743f882dc1156b4410a2967a811c4ff1")
2021-11-03 14:27:42 -05:00
package() {
install -d ${pkgdir}/usr/share/fonts/TTF/
2022-11-22 07:19:44 -06:00
install -m644 iosevkalyteterm/ttf/*.ttf ${pkgdir}/usr/share/fonts/TTF/
2021-11-03 14:27:42 -05:00
install -D -m644 ${pkgname}-${pkgver}-${pkgrel}-LICENSE.md ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md
}