1
1
mirror of https://github.com/i-tu/Hasklig.git synced 2024-08-15 05:20:40 +03:00
Hasklig/build.sh
2012-09-24 15:35:10 -07:00

14 lines
202 B
Bash
Executable File

#!/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