59 lines
2.2 KiB
Bash
59 lines
2.2 KiB
Bash
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
# They're available at the moment at (will be available as well later somewhere
|
|
# at http://kldp.net/prjects/....)
|
|
# http://chem.skku.ac.kr/~wkpark/project/font/GSUB (UnBatang with GSUB)
|
|
# http://chem.skku.ac.kr/~wkpark/project/font/UnFonts (the rest of the series)
|
|
#
|
|
# BTW, one of Un-series fonts (UnBatang) has to be downloaded
|
|
# from my site instead of PARK Won-Kyu's site. We worked together on adding
|
|
# opentype tables for Korean to UnBatang, but somehow one at his site
|
|
# doesn't work. All other Un-series fonts can be downloaded from his site
|
|
# whose address I gave you in my previous email. The address to download
|
|
# UnBatang is
|
|
#
|
|
# http://i18nl10n.com/korean/UnBatang.ttf
|
|
|
|
NAME=unfonts
|
|
mkdir $NAME
|
|
|
|
# http://chem.skku.ac.kr/~wkpark/project/font/UnFonts/UnBatang.ttf
|
|
# has the same family and postscript name as
|
|
# http://chem.skku.ac.kr/~wkpark/project/font/GSUB/UnbatangOdal/UnBatangOdal_0428.ttf
|
|
# can use only one. Which one?
|
|
|
|
# broken?
|
|
# (only 608k and it doesn't work with ftview:
|
|
# mfabian@magellan:~$ ftview 20 /usr/X11R6/lib/X11/fonts/truetype/UnBatang.ttf
|
|
# could not find/open any font file
|
|
# error = 0x0002
|
|
#
|
|
# http://i18nl10n.com/korean/UnBatang.ttf
|
|
|
|
pushd $NAME
|
|
for i in \
|
|
|
|
http://chem.skku.ac.kr/~wkpark/project/font/UnFonts/UnBatangBold.ttf \
|
|
http://chem.skku.ac.kr/~wkpark/project/font/UnFonts/UnBom.ttf \
|
|
http://chem.skku.ac.kr/~wkpark/project/font/UnFonts/UnDotum.ttf \
|
|
http://chem.skku.ac.kr/~wkpark/project/font/UnFonts/UnDotumBold.ttf \
|
|
http://chem.skku.ac.kr/~wkpark/project/font/UnFonts/UnGraphic.ttf \
|
|
http://chem.skku.ac.kr/~wkpark/project/font/UnFonts/UnGungseo.ttf \
|
|
http://chem.skku.ac.kr/~wkpark/project/font/UnFonts/UnPen.ttf \
|
|
http://chem.skku.ac.kr/~wkpark/project/font/UnFonts/UnPenheulim.ttf \
|
|
http://chem.skku.ac.kr/~wkpark/project/font/UnFonts/UnPilgi.ttf \
|
|
http://chem.skku.ac.kr/~wkpark/project/font/UnFonts/UnPilgiBold.ttf \
|
|
http://chem.skku.ac.kr/~wkpark/project/font/UnFonts/UnShinmun.ttf \
|
|
http://chem.skku.ac.kr/~wkpark/project/font/UnFonts/UnYetgul.ttf \
|
|
http://chem.skku.ac.kr/~wkpark/project/font/GSUB/UnbatangOdal/UnBatangOdal_0428.ttf
|
|
do
|
|
wget $i
|
|
done
|
|
popd
|
|
|
|
tar jcvf $NAME.tar.bz2.new $NAME
|
|
rm $NAME/*.ttf
|
|
rmdir $NAME
|