talimat 781 B

12345678910111213141516171819202122232425262728
  1. # Tanım: Microsoft'un Çekirdek TTF Fontları
  2. # URL: http://corefonts.sourceforge.net
  3. # Paketçi: milisarge
  4. # Gerekler: xorg-libx11 xorg-fontconfig libarchive p7zip
  5. # Grup: sistem
  6. isim=ttf-ms-fonts
  7. surum=2.0
  8. devir=1
  9. _sfpath="http://downloads.sourceforge.net/corefonts"
  10. kaynak=($_sfpath/andale32.exe $_sfpath/arial32.exe $_sfpath/arialb32.exe
  11. $_sfpath/comic32.exe $_sfpath/courie32.exe $_sfpath/georgi32.exe
  12. $_sfpath/impact32.exe $_sfpath/times32.exe $_sfpath/trebuc32.exe
  13. $_sfpath/verdan32.exe $_sfpath/webdin32.exe )
  14. derle() {
  15. for i in *.exe; do
  16. 7z e -y $i;
  17. done
  18. install -dm755 "$PKG/usr/share/fonts/TTF"
  19. for font in *.{ttf,TTF}; do
  20. install -m644 $font $PKG/usr/share/fonts/TTF/$(echo $font|tr A-Z a-z)
  21. done
  22. }