blob: 5534597e4adac398f69c35db73919806df2b40fb (
plain)
1 # Description: Noto fonts
2 # URL: https://www.google.com/get/noto/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on:
5
6 name=font-noto
7 version=1.0
8 release=1
9 source=(https://noto-website-2.storage.googleapis.com/pkgs/NotoMono-hinted.zip
10 https://noto-website-2.storage.googleapis.com/pkgs/NotoSans-hinted.zip
11 https://noto-website-2.storage.googleapis.com/pkgs/NotoSerif-hinted.zip)
12
13 build() {
14 install -d $PKG/usr/share/fonts/Noto
15 for i in *.ttf;
16 do install -m644 $i $PKG/usr/share/fonts/Noto;
17 done
18 }
|