talimat 555 B

12345678910111213141516171819202122
  1. # Description : Google Noto TTF yazı tipi
  2. # URL : https://www.google.com/get/noto/
  3. # Packager : alihan-ozturk28@hotmail.com
  4. # Depends on : xorg-fontconfig
  5. name=noto-fonts
  6. version=20151224
  7. _commit=3f1dc1
  8. release=1
  9. source=(https://github.com/googlei18n/noto-fonts/archive/$_commit.zip)
  10. build() {
  11. mkdir -p $PKG/usr/share/fonts/noto
  12. install -m644 $name-*/hinted/Noto*.ttf $PKG/usr/share/fonts/noto
  13. mkdir -p $PKG/usr/share/fonts/TTF
  14. for font in Arimo Cousine Tinos; do
  15. install -m644 $name-*/hinted/$font*.ttf $PKG/usr/share/fonts/TTF
  16. done
  17. }