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

31 lines
1.0 KiB
Bash
Raw Normal View History

#!/bin/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
# clean existing build artifacts
rm -rf target/
2013-09-06 12:22:05 +04:00
mkdir target/ target/OTF/ target/TTF/
2015-06-05 03:59:51 +03:00
for w in $romanWeights
do
2015-06-05 03:59:51 +03:00
makeotf -f Roman/$w/font.ufo -r -o target/OTF/$family-$w.otf
makeotf -f Roman/$w/font.ttf -r -o target/TTF/$family-$w.ttf
rm Roman/$w/current.fpr # remove default options file from the source tree after building
$addSVG target/OTF/$family-$w.otf svg/
$addSVG target/TTF/$family-$w.ttf svg/
done
2015-06-05 03:59:51 +03:00
for w in $italicWeights
do
makeotf -f Italic/$w/font.ufo -r -o target/OTF/$family-$w.otf
makeotf -f Italic/$w/font.ttf -r -o target/TTF/$family-$w.ttf
rm Italic/$w/current.fpr # remove default options file from the source tree after building
$addSVG target/OTF/$family-$w.otf svg/
$addSVG target/TTF/$family-$w.ttf svg/
2015-06-05 03:59:51 +03:00
done