require 'formula' class Lilypond :build # The guile version must be < 1.9 depends_on 'guile' depends_on 'gettext' depends_on 'ghostscript' depends_on 'pango' depends_on 'mftrace' depends_on 'fontforge' depends_on 'texinfo' skip_clean :all def install system "./configure", "--prefix=#{prefix}", "--with-ncsb-dir=#{Formula.factory('ghostscript').share}/ghostscript/fonts/" # Separate steps to ensure that lilypond's custom fonts are created. system "make" system "make install" end def caveats "Lilypond requires a version of TeX, such as TeX Live or MacTeX, prior to installing." end end