2018-06-09 00:06:58 +02:00
|
|
|
|
# Tanım: Microsoft'un Çekirdek TTF Fontları
|
|
|
|
|
# URL: http://corefonts.sourceforge.net
|
|
|
|
|
# Paketçi: milisarge
|
|
|
|
|
# Gerekler: xorg-libx11 xorg-fontconfig libarchive p7zip
|
2018-07-26 12:58:03 +02:00
|
|
|
|
# Grup: sistem
|
2018-06-09 00:06:58 +02:00
|
|
|
|
|
|
|
|
|
isim=ttf-ms-fonts
|
|
|
|
|
surum=2.0
|
|
|
|
|
devir=1
|
2018-07-26 12:58:03 +02:00
|
|
|
|
_sfpath="http://downloads.sourceforge.net/corefonts"
|
2018-06-09 00:06:58 +02:00
|
|
|
|
|
|
|
|
|
kaynak=($_sfpath/andale32.exe $_sfpath/arial32.exe $_sfpath/arialb32.exe
|
|
|
|
|
$_sfpath/comic32.exe $_sfpath/courie32.exe $_sfpath/georgi32.exe
|
|
|
|
|
$_sfpath/impact32.exe $_sfpath/times32.exe $_sfpath/trebuc32.exe
|
|
|
|
|
$_sfpath/verdan32.exe $_sfpath/webdin32.exe )
|
|
|
|
|
|
|
|
|
|
derle() {
|
|
|
|
|
for i in *.exe; do
|
|
|
|
|
7z e -y $i;
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
install -dm755 "$PKG/usr/share/fonts/TTF"
|
|
|
|
|
|
|
|
|
|
for font in *.{ttf,TTF}; do
|
|
|
|
|
install -m644 $font $PKG/usr/share/fonts/TTF/$(echo $font|tr A-Z a-z)
|
|
|
|
|
done
|
|
|
|
|
}
|