23 lines
621 B
Bash
23 lines
621 B
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
|
|
pkgname=noto-fonts-emoji
|
|
pkgver=2.042
|
|
pkgrel=1
|
|
epoch=1
|
|
pkgdesc='Google Noto emoji fonts'
|
|
arch=(any)
|
|
url='https://www.google.com/get/noto/'
|
|
license=(custom:OFL)
|
|
provides=(emoji-font)
|
|
makedepends=(git)
|
|
source=(git+https://github.com/googlefonts/noto-emoji.git#tag=v$pkgver)
|
|
sha256sums=('SKIP')
|
|
|
|
package() {
|
|
cd noto-emoji
|
|
mkdir -p "$pkgdir"/usr/share/fonts/noto
|
|
install -m644 fonts/NotoColorEmoji.ttf "$pkgdir"/usr/share/fonts/noto
|
|
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
}
|