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

14 lines
202 B
Bash
Raw Normal View History

#!/bin/sh
# Build OTFs
for f in $(find . -name 'font.pfa')
do
makeotf -f $f -r
done
# Build TTFs
for f in $(find . -name 'font.ttf')
do
makeotf -f $f -gf GlyphOrderAndAliasDB_TT -newNameID4 -r
done