mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 13:44:37 +08:00
24 lines
687 B
Bash
24 lines
687 B
Bash
# $Id$
|
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
|
|
pkgname=ttf-noto-cjk
|
|
pkgver=1.004
|
|
pkgrel=2
|
|
pkgdesc="Google Noto CJK fonts"
|
|
arch=(any)
|
|
url="https://www.google.com/get/noto/"
|
|
license=(custom:SIL)
|
|
depends=(fontconfig)
|
|
provides=("otf-noto")
|
|
replaces=("otf-noto")
|
|
conflicts=("otf-noto")
|
|
install=$pkgname.install
|
|
source=("https://github.com/googlei18n/noto-cjk/archive/v$pkgver.tar.gz")
|
|
sha256sums=('835a42755c1e8d6a4a406f32609da1f0fa7f9674d05760f0be658d9d6f4ab71c')
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"/usr/share/fonts/noto
|
|
install -m644 noto-cjk-$pkgver/*.ttc "$pkgdir"/usr/share/fonts/noto
|
|
install -Dm644 noto-cjk-$pkgver/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
}
|