2014-08-13 12:06:52 +08:00
|
|
|
pkgbase=ttf-noto
|
|
|
|
pkgname=('ttf-noto' 'otf-noto')
|
2015-06-18 06:51:48 +08:00
|
|
|
pkgver=20150616
|
2014-07-16 17:23:12 +08:00
|
|
|
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')
|
2015-06-13 20:28:37 +08:00
|
|
|
source=("http://storage.googleapis.com/noto-website/pkgs/Noto-hinted.zip")
|
2015-06-18 06:51:48 +08:00
|
|
|
md5sums=('133aa18ea3ed161f331ee51594d92f5c')
|
2015-04-21 15:42:08 +08:00
|
|
|
install=${pkgbase}.install
|
2014-07-16 17:23:12 +08:00
|
|
|
|
2014-08-13 12:06:52 +08:00
|
|
|
package_ttf-noto() {
|
2014-07-16 17:23:12 +08:00
|
|
|
for file in *.ttf
|
|
|
|
do
|
|
|
|
install -Dm644 $file $pkgdir/usr/share/fonts/TTF/$file
|
|
|
|
done
|
2014-08-13 12:06:52 +08:00
|
|
|
}
|
|
|
|
package_otf-noto() {
|
2014-07-16 17:23:12 +08:00
|
|
|
for file in *.otf
|
|
|
|
do
|
|
|
|
install -Dm644 $file $pkgdir/usr/share/fonts/OTF/$file
|
|
|
|
done
|
|
|
|
}
|