https://codereview.appspot.com/315850043/ https://sourceforge.net/p/testlilyissues/issues/4998/
I found this issue with the fonts while reading the LilyDev instructions on GitHub. To me, it looks like the easiest way to resolve it would be adding some WGET commands to the ~/.lilydev-setup.sh script, right after the git clone operations that are already assuming an Internet connection. Then the fonts would be available from the beginning, and perhaps no special documentation would be needed. I'm attaching a proposed script for this idea. (No master of BASH here; could be doing it wrong.) Further observations: the referenced git repository has had several commits since this issue began. One of them changes font file names from "Oblique" to "Italic," and another says something about fixing a missing blue zone at the tops of numbers. Should the download links use the most recent files, or this exact commit from July 12, 2016? The URLs for this repository could be written for either effect. -- Karlin High Missouri, USA
#!/bin/bash # LilyPond docs need Greek and Cyrillic fonts from Ghostscript URW35 URW35FONTS=\ "C059-BdIta.otf C059-Bold.otf C059-Italic.otf C059-Roman.otf NimbusMonoPS-Bold.otf NimbusMonoPS-BoldItalic.otf NimbusMonoPS-Italic.otf NimbusMonoPS-Regular.otf NimbusSans-Bold.otf NimbusSans-BoldOblique.otf NimbusSans-Oblique.otf NimbusSans-Regular.otf" for font in $URW35FONTS do WGETURL="http://git.ghostscript.com/?p=urw-core35-fonts.git;a=blob;hb=79bcdfb34fbce12b592cce389fa7a19da6b5b018;f=$font;" # wget: less verbose, create directory, don't make host directory, # use file name from HTTP header, set download location wget -nv -x -nH --content-disposition -P ~/.local/share/fonts "$WGETURL" done
_______________________________________________ lilypond-devel mailing list lilypond-devel@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-devel