1
1
mirror of https://github.com/i-tu/Hasklig.git synced 2024-08-15 05:20:40 +03:00
Hasklig/build.sh
2015-07-15 03:05:54 -07:00

33 lines
1.0 KiB
Bash
Executable File

#!/bin/sh
family=SourceCodePro
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/OTF"
ttfDir="target/TTF"
mkdir -p $otfDir $ttfDir
for w in $romanWeights
do
makeotf -f Roman/$w/font.ufo -r -o $otfDir/$family-$w.otf
makeotf -f Roman/$w/font.ttf -r -o $ttfDir/$family-$w.ttf
rm Roman/$w/current.fpr # remove default options file from the source tree after building
"$addSVG" $otfDir/$family-$w.otf svg
"$addSVG" $ttfDir/$family-$w.ttf svg
done
for w in $italicWeights
do
makeotf -f Italic/$w/font.ufo -r -o $otfDir/$family-$w.otf
makeotf -f Italic/$w/font.ttf -r -o $ttfDir/$family-$w.ttf
rm Italic/$w/current.fpr # remove default options file from the source tree after building
"$addSVG" $otfDir/$family-$w.otf svg
"$addSVG" $ttfDir/$family-$w.ttf svg
done