blob: e0653f0166f1ade7bbe0a55c610eb29543073f6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  | 
require 'formula'
class Lilypond <Formula
  url 'http://download.linuxaudio.org/lilypond/sources/v2.13/lilypond-2.13.36.tar.gz'
  homepage 'http://lilypond.org/'
  md5 'd19f2cdc2b07b3a156676074cbbd0dfe'
  depends_on 'pkg-config' => :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
  |