mirror of
https://github.com/i-tu/Hasklig.git
synced 2024-11-05 03:38:30 +03:00
28 lines
803 B
Bash
Executable File
28 lines
803 B
Bash
Executable File
#!/bin/sh
|
|
|
|
family=Hasklig
|
|
romanWeights='Black Bold ExtraLight Light Medium Regular Semibold'
|
|
italicWeights='BlackIt BoldIt ExtraLightIt LightIt MediumIt It SemiboldIt'
|
|
|
|
# path to Python script that adds the SVG table
|
|
addSVG=$(cd $(dirname "$0") && pwd -P)/addSVGtable.py
|
|
|
|
# clean existing build artifacts
|
|
rm -rf target/
|
|
otfDir="target/"
|
|
mkdir -p $otfDir
|
|
|
|
for w in $romanWeights
|
|
do
|
|
makeotf -f Roman/$w/font.ufo -r -o $otfDir/$family-$w.otf
|
|
rm Roman/$w/current.fpr # remove default options file from the source tree after building
|
|
"$addSVG" $otfDir/$family-$w.otf svg
|
|
done
|
|
|
|
for w in $italicWeights
|
|
do
|
|
makeotf -f Italic/$w/font.ufo -r -o $otfDir/$family-$w.otf
|
|
rm Italic/$w/current.fpr # remove default options file from the source tree after building
|
|
"$addSVG" $otfDir/$family-$w.otf svg
|
|
done
|