mirror of
https://github.com/i-tu/Hasklig.git
synced 2024-11-04 00:07:38 +03:00
updates build script
This commit is contained in:
parent
2517262938
commit
fa7cfcd8fe
16
build.sh
16
build.sh
@ -1,15 +1,23 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
family=SourceCodePro
|
family=SourceCodePro
|
||||||
weights='Black Bold ExtraLight Light Medium Regular Semibold'
|
romanWeights='Black Bold ExtraLight Light Medium Regular Semibold'
|
||||||
|
italicWeights='BlackIt BoldIt ExtraLightIt LightIt MediumIt It SemiboldIt'
|
||||||
|
|
||||||
# clean existing build artifacts
|
# clean existing build artifacts
|
||||||
rm -rf target/
|
rm -rf target/
|
||||||
mkdir target/ target/OTF/ target/TTF/
|
mkdir target/ target/OTF/ target/TTF/
|
||||||
|
|
||||||
for w in $weights
|
for w in $romanWeights
|
||||||
do
|
do
|
||||||
makeotf -f Roman/$w/font.pfa -r -o target/OTF/$family-$w.otf
|
makeotf -f Roman/$w/font.ufo -r -o target/OTF/$family-$w.otf
|
||||||
makeotf -f Roman/$w/font.ttf -gf GlyphOrderAndAliasDB_TT -r -o target/TTF/$family-$w.ttf
|
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
|
rm Roman/$w/current.fpr # remove default options file from the source tree after building
|
||||||
done
|
done
|
||||||
|
|
||||||
|
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
|
||||||
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user