talimat 556 B

1234567891011121314151617181920212223
  1. # Tanım: Google Noto TTF yazı tipi
  2. # URL : https://www.google.com/get/noto/
  3. # Paketçi: alihan-ozturk28@hotmail.com
  4. # Gerekler: xorg-fontconfig
  5. # Grup: sistem
  6. isim=noto-fonts
  7. surum=20151224
  8. _commit=3f1dc1
  9. devir=1
  10. kaynak=(https://github.com/googlei18n/noto-fonts/archive/$_commit.zip)
  11. derle() {
  12. mkdir -p $PKG/usr/share/fonts/noto
  13. install -m644 $isim-*/hinted/Noto*.ttf $PKG/usr/share/fonts/noto
  14. mkdir -p $PKG/usr/share/fonts/TTF
  15. for font in Arimo Cousine Tinos; do
  16. install -m644 $isim-*/hinted/$font*.ttf $PKG/usr/share/fonts/TTF
  17. done
  18. }