From: Han-Wen Nienhuys Date: Tue, 14 May 2002 12:42:49 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: release/1.5.56~15 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=41ee98da21452812640bd430d04bcf8748df88d1;p=lilypond.git *** empty log message *** --- diff --git a/buildscripts/make-font-dir.py b/buildscripts/make-font-dir.py new file mode 100644 index 0000000000..8edcffca3b --- /dev/null +++ b/buildscripts/make-font-dir.py @@ -0,0 +1,14 @@ + +import re +import sys +import string +ls = sys.stdin.readline () +ls = string.split (ls) +print len(ls) +for fn in ls: + name = re.sub ('\.pf[ab]', '',fn) + name = re.sub ('-', ' ',name) + + print '%s -misc-%s-regular-r-normal--0-0-0-0-p-0-adobe-fontspecific' % (fn, name) + +