2010-01-22 05:13:42 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Lilypond < Formula
|
2011-03-06 00:20:53 +00:00
|
|
|
url 'http://download.linuxaudio.org/lilypond/sources/v2.13/lilypond-2.13.52.tar.gz'
|
2010-01-22 05:13:42 +00:00
|
|
|
homepage 'http://lilypond.org/'
|
2011-03-06 00:20:53 +00:00
|
|
|
md5 '662e18ca5a01d3357eda17efb4ae95ce'
|
2010-01-22 05:13:42 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-01-22 05:13:42 +00:00
|
|
|
depends_on 'gettext'
|
|
|
|
depends_on 'pango'
|
2011-03-06 00:20:53 +00:00
|
|
|
depends_on 'guile'
|
|
|
|
depends_on 'ghostscript'
|
2010-01-22 05:13:42 +00:00
|
|
|
depends_on 'mftrace'
|
|
|
|
depends_on 'fontforge'
|
|
|
|
depends_on 'texinfo'
|
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
skip_clean :all
|
2010-01-22 05:13:42 +00:00
|
|
|
|
|
|
|
def install
|
2011-03-06 00:20:53 +00:00
|
|
|
gs = Formula.factory('ghostscript')
|
2010-01-22 05:13:42 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
2011-03-06 00:20:53 +00:00
|
|
|
"--with-ncsb-dir=#{gs.share}/ghostscript/fonts/"
|
2010-01-22 05:13:42 +00:00
|
|
|
|
|
|
|
# Separate steps to ensure that lilypond's custom fonts are created.
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
2011-03-06 00:20:53 +00:00
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
Lilypond requires a version of TeX, such as TeX Live or MacTeX, prior to installing.
|
|
|
|
Available at: http://www.tug.org/mactex/
|
|
|
|
EOS
|
2010-01-22 05:13:42 +00:00
|
|
|
end
|
|
|
|
end
|