mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 00:44:38 +08:00
30 lines
689 B
Bash
30 lines
689 B
Bash
|
# Maintainer: wengxt <wengxt at gmail dot com>
|
||
|
|
||
|
pkgname=ttf-noto
|
||
|
pkgver=20140714
|
||
|
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=('e72d000d9e90729a6caceff7afaf1f45')
|
||
|
install=$pkgname.install
|
||
|
|
||
|
package() {
|
||
|
for file in *.ttf
|
||
|
do
|
||
|
install -Dm644 $file $pkgdir/usr/share/fonts/TTF/$file
|
||
|
done
|
||
|
|
||
|
for file in *.otf
|
||
|
do
|
||
|
install -Dm644 $file $pkgdir/usr/share/fonts/OTF/$file
|
||
|
done
|
||
|
}
|
||
|
|