]> git.donarmstrong.com Git - lilypond.git/blob - buildscripts/pfx2ttf.fontforge
Merge with git+ssh://jneem@git.sv.gnu.org/srv/git/lilypond.git
[lilypond.git] / buildscripts / pfx2ttf.fontforge
1 #!@FONTFORGE@
2
3 Open($1);
4 MergeKern($2)
5
6 # Remove the No. glyph - for want of better FF fix.  
7 err = SelectIf("afii61352");
8 if ( err > 0 )
9    Cut();
10 elseif ( err == 0 )
11    Print("Could not find \"numero\" glyph");
12 elseif ( err < 0 )
13    Print("An error occurred while searching for the \"numero\" glyph");
14 endif
15
16 Generate($3 + $fontname + ".otf");
17