mirror of
https://github.com/adobe-fonts/source-code-pro.git
synced 2026-01-15 01:18:18 -05:00
24 lines
765 B
Bash
Executable File
24 lines
765 B
Bash
Executable File
#!/bin/sh
|
|
|
|
family=SourceCodePro
|
|
romanWeights='Black Bold ExtraLight Light Medium Regular Semibold'
|
|
italicWeights='BlackIt BoldIt ExtraLightIt LightIt MediumIt It SemiboldIt'
|
|
|
|
# clean existing build artifacts
|
|
rm -rf target/
|
|
mkdir target/ target/OTF/ target/TTF/
|
|
|
|
for w in $romanWeights
|
|
do
|
|
makeotf -f Roman/$w/font.ufo -r -o target/OTF/$family-$w.otf
|
|
makeotf -f Roman/$w/font.ttf -r -o target/TTF/$family-$w.ttf
|
|
rm Roman/$w/current.fpr # remove default options file from the source tree after building
|
|
done
|
|
|
|
for w in $italicWeights
|
|
do
|
|
makeotf -f Italic/$w/font.ufo -r -o target/OTF/$family-$w.otf
|
|
makeotf -f Italic/$w/font.ttf -r -o target/TTF/$family-$w.ttf
|
|
rm Italic/$w/current.fpr # remove default options file from the source tree after building
|
|
done
|