]> git.donarmstrong.com Git - lilypond.git/commitdiff
*** empty log message ***
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 14 May 2002 12:42:49 +0000 (12:42 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 14 May 2002 12:42:49 +0000 (12:42 +0000)
buildscripts/make-font-dir.py [new file with mode: 0644]

diff --git a/buildscripts/make-font-dir.py b/buildscripts/make-font-dir.py
new file mode 100644 (file)
index 0000000..8edcffc
--- /dev/null
@@ -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)
+    
+