diff options
Diffstat (limited to 'Master/texmf-dist/source/fonts/japanese-otf-uptex/umakeotf_prop')
-rwxr-xr-x | Master/texmf-dist/source/fonts/japanese-otf-uptex/umakeotf_prop | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/fonts/japanese-otf-uptex/umakeotf_prop b/Master/texmf-dist/source/fonts/japanese-otf-uptex/umakeotf_prop new file mode 100755 index 00000000000..e688603ed55 --- /dev/null +++ b/Master/texmf-dist/source/fonts/japanese-otf-uptex/umakeotf_prop @@ -0,0 +1,36 @@ +#!/bin/sh + +# +# This script is a part of otfbeta-uptex (a.k.a. japanese-otf-uptex). +# + +#OVP2OVF='omfonts -ovp2ovf' +OVP2OVF='wovp2ovf' +#OVP2OVF=ovp2ovf + +if test ! -d tfm; then +mkdir tfm +fi +if test ! -d vf; then +mkdir vf +fi +if test ! -d ovp; then +mkdir ovp +fi + +echo "making proportional kana tfm/vf ..." +perl -s script/umkpkana.pl -sp=1 +perl -s script/umkvpkana.pl -sp=1 + +for face in minw3 minw6 kakuw3 kakuw6 maruw4 +do +uppltotf -kanji=uptex pl/upphira${face}-h.pl tfm/upphira${face}-h.tfm +uppltotf -kanji=uptex pl/upphira${face}-v.pl tfm/upphira${face}-v.tfm +done + +for face in minw3 minw6 kakuw3 kakuw6 maruw4 +do +$OVP2OVF ovp/upphira${face}-h.ovp vf/upphira${face}-h.vf vf/upphira${face}-h.ofm +$OVP2OVF ovp/upphira${face}-v.ovp vf/upphira${face}-v.vf vf/upphira${face}-v.ofm +done + |