1
1
mirror of https://github.com/i-tu/Hasklig.git synced 2024-08-15 05:20:40 +03:00
Hasklig/build.sh
Ian Tuomi 288ac111a0 Implement code ligatures :)
ligatures for:
<-, ->, =>, >>, <<, >>=, =<<, .., …, ::, -<, >-, -<<, >>-, ++, /= and ==
2014-04-19 17:13:21 +03:00

16 lines
456 B
Bash
Executable File

#!/bin/sh
family=SourceCodeProL
weights='Black Bold ExtraLight Light Medium Regular Semibold'
# clean existing build artifacts
rm -rf target/
mkdir target/ target/OTF/ target/TTF/
for w in $weights
do
makeotf -f Roman/$w/font.pfa -r -o target/OTF/$family-$w.otf
# makeotf -f Roman/$w/font.ttf -gf GlyphOrderAndAliasDB_TT -r -o target/TTF/$family-$w.ttf
rm Roman/$w/current.fpr # remove default options file from the source tree after building
done