1
1
mirror of https://github.com/tonsky/FiraCode.git synced 2024-08-17 00:40:32 +03:00
FiraCode/script/build_ttf
2020-06-08 01:53:13 +02:00

22 lines
649 B
Bash
Executable File

#!/bin/bash -euo pipefail
source venv/bin/activate
args=( "$@" )
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}
ttfautohint -I ${file} ${file}.hinted --stem-width-mode nnn --composites --windows-compatibility
mv ${file}.hinted ${file}
done