22 lines
541 B
Plaintext
22 lines
541 B
Plaintext
|
# Tanım: Google Noto TTF yazı tipi
|
|||
|
# URL : https://www.google.com/get/noto/
|
|||
|
# Paketçi: alihan-ozturk28@hotmail.com
|
|||
|
# Gerekler: xorg-fontconfig
|
|||
|
|
|||
|
isim=noto-fonts
|
|||
|
surum=20151224
|
|||
|
_commit=3f1dc1
|
|||
|
devir=1
|
|||
|
|
|||
|
kaynak=(https://github.com/googlei18n/noto-fonts/archive/$_commit.zip)
|
|||
|
|
|||
|
derle() {
|
|||
|
mkdir -p $PKG/usr/share/fonts/noto
|
|||
|
install -m644 $isim-*/hinted/Noto*.ttf $PKG/usr/share/fonts/noto
|
|||
|
|
|||
|
mkdir -p $PKG/usr/share/fonts/TTF
|
|||
|
for font in Arimo Cousine Tinos; do
|
|||
|
install -m644 $isim-*/hinted/$font*.ttf $PKG/usr/share/fonts/TTF
|
|||
|
done
|
|||
|
}
|