2018-10-22 16:54:15 +09:00
|
|
|
# Maintainer: Plague-doctor <plague at privacyrequired dot com >
|
|
|
|
|
|
|
|
pkgname=nerd-fonts-fantasque-sans-mono
|
2020-05-23 17:27:23 +09:00
|
|
|
pkgver=2.1.0
|
2021-09-30 07:29:13 +09:00
|
|
|
pkgrel=2
|
2018-10-22 16:54:15 +09:00
|
|
|
pkgdesc="Patched font FantasqueSansMono from the nerd-fonts library"
|
|
|
|
arch=("any")
|
|
|
|
url="https://github.com/ryanoasis/nerd-fonts"
|
|
|
|
license=('MIT')
|
|
|
|
depends=('fontconfig')
|
2021-09-30 07:29:13 +09:00
|
|
|
provides=('nerd-fonts-fantasque-sans-mono' 'ttf-font-nerd')
|
2018-10-22 16:54:15 +09:00
|
|
|
conflicts=('nerd-fonts-git' 'nerd-fonts-complete')
|
|
|
|
groups=("nerd-fonts")
|
|
|
|
source=("${url}/releases/download/v$pkgver/FantasqueSansMono.zip"
|
|
|
|
"${url}/raw/v$pkgver/LICENSE")
|
2020-05-23 17:27:23 +09:00
|
|
|
sha1sums=('f2808204e67eb80e1907e1416ed8a189aa93b06a'
|
2018-10-22 16:54:15 +09:00
|
|
|
'92fdad3c8babc0473da5f03e41fb1151417ab386')
|
|
|
|
|
|
|
|
package() {
|
|
|
|
find . -iname "*.ttf" -not -iname "*Windows Compatible.ttf" \
|
|
|
|
-execdir install -Dm644 {} "$pkgdir/usr/share/fonts/TTF/{}" \;
|
|
|
|
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
|
|
}
|
|
|
|
|