Add making OTF into build pipeline

pull/1614/head
Ben 2024-10-16 18:00:17 +03:00
rodzic 34cced2a12
commit 94fc5170f3
2 zmienionych plików z 28 dodań i 0 usunięć

Wyświetl plik

@ -94,6 +94,7 @@ if [ "${gen_glyphs_file_only}" -ne 0 ]; then
exit 0
fi
./build_otf.sh "${weights[@]}"
./build_ttf.sh "${weights[@]}"
./build_variable.sh
./build_woff2.sh

Wyświetl plik

@ -0,0 +1,27 @@
#!/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/otf/${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}.otf"
echo "=============="
echo
echo " [i] Creating ${file}"
echo
fontmake -g "${glyphs_file}" -o otf --output-path "${file}" -i ".* ${weight}"
done