forked from adobe-fonts/source-code-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
executable file
·37 lines (30 loc) · 1.09 KB
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env sh
set -eu
family=SourceCodeProLigatures
romanWeights='Black Bold ExtraLight Light Medium Regular Semibold'
italicWeights='BlackIt BoldIt ExtraLightIt LightIt MediumIt It SemiboldIt'
# path to Python script that adds the SVG table
addSVG=$(cd $(dirname "$0") && pwd -P)/addSVGtable.py
# path to UVS file
UVS=$(cd $(dirname "$0") && pwd -P)/uvs.txt
# clean existing build artifacts
rm -rf target/
otfDir="target/OTF"
ttfDir="target/TTF"
mkdir -p $otfDir $ttfDir
for w in $romanWeights
do
font_path=Roman/Instances/$w/font
makeotf -f $font_path.ufo -r -ci "$UVS" -o $otfDir/$family-$w.otf
# makeotf -f $font_path.ttf -r -ci "$UVS" -o $ttfDir/$family-$w.ttf -ff $font_path.ufo/features.fea
"$addSVG" $otfDir/$family-$w.otf svg
# "$addSVG" $ttfDir/$family-$w.ttf svg
done
for w in $italicWeights
do
font_path=Italic/Instances/$w/font
makeotf -f $font_path.ufo -r -ci "$UVS" -o $otfDir/$family-$w.otf
# makeotf -f $font_path.ttf -r -ci "$UVS" -o $ttfDir/$family-$w.ttf -ff $font_path.ufo/features.fea
"$addSVG" $otfDir/$family-$w.otf svg
# "$addSVG" $ttfDir/$family-$w.ttf svg
done