2012-09-25 02:35:10 +04:00
|
|
|
#!/bin/sh
|
|
|
|
|
2012-09-25 10:01:51 +04:00
|
|
|
family=SourceCodePro
|
|
|
|
weights=('Black' 'Bold' 'ExtraLight' 'Light' 'Regular' 'Semibold')
|
|
|
|
|
|
|
|
# clean existing build artifacts
|
|
|
|
rm -rf target/
|
|
|
|
mkdir target/
|
2012-09-25 02:35:10 +04:00
|
|
|
|
2012-09-25 10:01:51 +04:00
|
|
|
for w in ${weights[@]};
|
2012-09-25 02:35:10 +04:00
|
|
|
do
|
2012-09-25 10:01:51 +04:00
|
|
|
makeotf -sp target/$family-$w-otf.fpr -f Roman/$w/font.pfa -r -o target/$family-$w.otf
|
2012-09-25 11:16:43 +04:00
|
|
|
makeotf -sp target/$family-$w-ttf.fpr -f Roman/$w/font.ttf -gf GlyphOrderAndAliasDB_TT -r -o target/$family-$w.ttf
|
2012-09-25 10:01:51 +04:00
|
|
|
rm Roman/$w/current.fpr # remove default options file from the source tree after building
|
2012-09-25 02:35:10 +04:00
|
|
|
done
|