kopia lustrzana https://github.com/tonsky/FiraCode
Add making OTF into build pipeline
rodzic
34cced2a12
commit
94fc5170f3
|
@ -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
|
||||
|
|
|
@ -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
|
Ładowanie…
Reference in New Issue