mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 14:54:37 +08:00
25 lines
604 B
Bash
25 lines
604 B
Bash
pkgname=ttf-noto
|
|
pkgver=20161012
|
|
pkgrel=1
|
|
pkgdesc="Google Noto TTF fonts"
|
|
arch=('any')
|
|
url="http://www.google.com/get/noto"
|
|
license=('apache')
|
|
depends=(fontconfig)
|
|
makedepends=()
|
|
provides=('ttf-font' "${pkgname}-emoji")
|
|
conflicts=("${pkgname}-emoji<${pkgver}")
|
|
replaces=("${pkgname}-emoji<${pkgver}")
|
|
source=("http://storage.googleapis.com/noto-website/pkgs/Noto-hinted.zip")
|
|
md5sums=('e8fd003b86f583b2b5bf9d679c1d424d')
|
|
install=${pkgname}.install
|
|
|
|
pkgver() {
|
|
date +%Y%m%d
|
|
}
|
|
|
|
package_ttf-noto() {
|
|
install -dm755 "$pkgdir"/usr/share/fonts/TTF
|
|
install -m644 *.ttf "$pkgdir"/usr/share/fonts/TTF
|
|
}
|