1
0
Fork 0
mirror of synced 2024-05-01 03:03:29 +12:00
FiraCode/script/build_ttf.sh

32 lines
792 B
Bash
Executable file

#!/bin/bash
set -o errexit -o nounset -o pipefail
cd "$(dirname "$0")/.."
[ -d venv ] && source venv/bin/activate
family_name=${FIRACODE_FAMILY_NAME:-"Fira Code"}
glyphs_file=${FIRACODE_GLYPHS_FILE:-"FiraCode.glyphs"}
dir="distr/ttf/${family_name}"
mkdir -p "${dir}"
rm -rf "${dir:?}/"*
args=( "$@" )
default_weights=( "Light" "Regular" "Retina" "Medium" "SemiBold" "Bold" )
weights=( "${args[@]:-"${default_weights[@]}"}" )
for weight in "${weights[@]}"; do
file="${dir}/FiraCode-${weight}.ttf"
echo "=============="
echo
echo " [i] Creating ${file}"
echo
fontmake -g "${glyphs_file}" -o ttf --output-path "${file}" -i ".* ${weight}"
echo " [i] TTFautohint ${file}"
ttfautohint --no-info --ignore-restrictions "${file}" "${file}.hinted"
mv "${file}.hinted" "${file}"
done