1
1
mirror of https://github.com/tonsky/FiraCode.git synced 2024-07-15 00:30:29 +03:00
FiraCode/script/build_ttf

24 lines
683 B
Plaintext
Raw Normal View History

2020-06-08 02:53:13 +03:00
#!/bin/bash -euo pipefail
2020-06-17 23:06:57 +03:00
[ -d venv ] && source venv/bin/activate
args=( "$@" )
2020-04-06 00:25:07 +03:00
default_weights=( "Light" "Regular" "Retina" "Medium" "SemiBold" "Bold" )
weights=( "${args[@]:-"${default_weights[@]}"}" )
for weight in "${weights[@]}"; do
file=distr/ttf/FiraCode-${weight}.ttf
echo "Making " ${file}
rm -rf ${file}
fontmake -g FiraCode.glyphs -o ttf --output-dir distr/ttf -i "Fira Code ${weight}"
echo "Fixing DSIG in " ${file}
gftools fix-dsig --autofix ${file}
echo "TTFautohint " ${file}
2020-10-26 15:10:54 +03:00
ttfautohint --detailed-info ${file} ${file}.hinted --stem-width-mode nnn --composites
#--windows-compatibility
2020-06-08 02:53:13 +03:00
mv ${file}.hinted ${file}
done