mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 13:24:36 +08:00
32 lines
748 B
Bash
32 lines
748 B
Bash
# Maintainer: wengxt <wengxt at gmail dot com>
|
|
|
|
pkgbase=ttf-noto
|
|
pkgname=('ttf-noto' 'otf-noto')
|
|
pkgver=20140912
|
|
pkgrel=1
|
|
pkgdesc="Fonts support all languages/characters in Unicode"
|
|
arch=('any')
|
|
url="http://www.google.com/get/noto"
|
|
license=('apache')
|
|
depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
|
|
makedepends=()
|
|
conflicts=()
|
|
provides=('ttf-font')
|
|
source=("http://www.google.com/get/noto/pkgs/Noto-hinted.zip")
|
|
md5sums=('38d084fb4ad7ec14f7faeb44e081d28a')
|
|
install=$pkgname.install
|
|
|
|
package_ttf-noto() {
|
|
for file in *.ttf
|
|
do
|
|
install -Dm644 $file $pkgdir/usr/share/fonts/TTF/$file
|
|
done
|
|
}
|
|
package_otf-noto() {
|
|
for file in *.otf
|
|
do
|
|
install -Dm644 $file $pkgdir/usr/share/fonts/OTF/$file
|
|
done
|
|
}
|
|
|