2017-10-27 20:46:27 +02:00
|
|
|
|
# Tanım: Microsoft'un Çekirdek TTF Fontları
|
2017-04-19 14:53:53 +02:00
|
|
|
|
# URL: http://corefonts.sourceforge.net
|
2017-10-27 20:46:27 +02:00
|
|
|
|
# Paketçi: milisarge
|
|
|
|
|
# Gerekler: xorg-libx11 xorg-fontconfig libarchive p7zip
|
2016-02-24 01:27:23 +01:00
|
|
|
|
_sfpath="http://downloads.sourceforge.net/corefonts"
|
|
|
|
|
|
2017-10-28 14:10:23 +02:00
|
|
|
|
isim=ttf-ms-fonts
|
|
|
|
|
surum=2.0
|
|
|
|
|
devir=1
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
2017-10-28 14:10:23 +02:00
|
|
|
|
kaynak=($_sfpath/andale32.exe $_sfpath/arial32.exe $_sfpath/arialb32.exe
|
2016-02-24 01:27:23 +01:00
|
|
|
|
$_sfpath/comic32.exe $_sfpath/courie32.exe $_sfpath/georgi32.exe
|
|
|
|
|
$_sfpath/impact32.exe $_sfpath/times32.exe $_sfpath/trebuc32.exe
|
|
|
|
|
$_sfpath/verdan32.exe $_sfpath/webdin32.exe )
|
|
|
|
|
|
2017-10-27 23:59:41 +02:00
|
|
|
|
derle() {
|
2016-02-24 01:27:23 +01:00
|
|
|
|
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
|
|
|
|
|
}
|