1
1
mirror of https://github.com/i-tu/Hasklig.git synced 2024-09-11 02:25:46 +03:00
Hasklig/build.sh

36 lines
1.1 KiB
Bash
Raw Normal View History

2017-07-26 10:25:55 +03:00
#!/usr/bin/env sh
family=SourceCodePro
2015-06-05 03:59:51 +03:00
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
# path to UVS file
UVS=$(cd $(dirname "$0") && pwd -P)/uvs.txt
# clean existing build artifacts
rm -rf target/
2015-07-15 13:05:54 +03:00
otfDir="target/OTF"
ttfDir="target/TTF"
mkdir -p $otfDir $ttfDir
2015-06-05 03:59:51 +03:00
for w in $romanWeights
do
2017-07-26 10:25:55 +03:00
font_path=Roman/Instances/$w/font
makeotf -f $font_path.ufo -r -ci "$UVS" -o $otfDir/$family-$w.otf
makeotf -f $font_path.ttf -r -ci "$UVS" -o $ttfDir/$family-$w.ttf -ff $font_path.ufo/features.fea
2015-07-15 13:05:54 +03:00
"$addSVG" $otfDir/$family-$w.otf svg
"$addSVG" $ttfDir/$family-$w.ttf svg
done
2015-06-05 03:59:51 +03:00
for w in $italicWeights
do
2017-07-26 10:25:55 +03:00
font_path=Italic/Instances/$w/font
makeotf -f $font_path.ufo -r -ci "$UVS" -o $otfDir/$family-$w.otf
makeotf -f $font_path.ttf -r -ci "$UVS" -o $ttfDir/$family-$w.ttf -ff $font_path.ufo/features.fea
2015-07-15 13:05:54 +03:00
"$addSVG" $otfDir/$family-$w.otf svg
"$addSVG" $ttfDir/$family-$w.ttf svg
2015-06-05 03:59:51 +03:00
done