buildfonts.sh | 10 ++++++++++
1 file changed, 10 insertions(+)
--- intlfonts-1.2.1.orig/buildfonts.sh
+++ intlfonts-1.2.1/buildfonts.sh
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+DIRS="Asian Chinese Chinese.BIG Ethiopic European European.BIG"
+DIRS="$DIRS Japanese Japanese.BIG Misc"
+
+for BDF in $(find $DIRS -name '*.bdf'); do
+ PCF=${BDF%bdf}pcf
+ bdftopcf -o $PCF $BDF
+ gzip -9 $PCF
+done