mirror of
https://github.com/bertptrs/aur.git
synced 2025-12-25 12:40:30 +01:00
18 lines
786 B
Bash
18 lines
786 B
Bash
# Maintainer: Bert Peters <bert@bertptrs.nl>
|
|
pkgname=ttf-lastresort
|
|
pkgver=17.000
|
|
pkgrel=1
|
|
pkgdesc="Unicode last resort fallback font."
|
|
arch=('any')
|
|
url="https://github.com/unicode-org/last-resort-font"
|
|
license=('OFL')
|
|
source=(LastResortHE-$pkgver.ttf::$url/releases/download/$pkgver/LastResortHE-Regular.ttf
|
|
LastResort-LICENSE-$pkgver::https://raw.githubusercontent.com/unicode-org/last-resort-font/$pkgver/LICENSE)
|
|
sha256sums=('3a936fe2379e9e164a8f9819095cbf53d9305a2d08532d9be5b496f4be45bcde'
|
|
'fc8fc512b27846bdb0d6645bed8069ac87ea599548b58a8d04bc3b0ea705a9c4')
|
|
|
|
package() {
|
|
install -Dm644 "LastResortHE-$pkgver.ttf" "$pkgdir/usr/share/fonts/TTF/LastResortHE.ttf"
|
|
install -Dm644 "LastResort-LICENSE-$pkgver" "$pkgdir/usr/share/licenses/ttf-lastresort/LICENSE"
|
|
}
|