klayout/scripts/mk_hershey_fonts.sh

15 lines
293 B
Bash
Raw Normal View History

2020-01-23 18:38:41 +01:00
#!/bin/bash -e
inst_dir=$(dirname $(which $0))
fonts=(rowmant timesr timesi futural futuram gothiceng rowmand)
for font in ${fonts[@]}; do
svn cat https://github.com/kamalmostafa/hershey-fonts.git/trunk/hershey-fonts/$font.jhf >$font.jhf
$inst_dir/jhf2c.pl $font
rm $font.jhf
done