blob: 444539ea81c792053c56be47dfad5cba88dc6bfe (
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
33
34
35
36
37
  | 
require "formula"
class Frescobaldi < Formula
  homepage "http://frescobaldi.org/"
  url "https://github.com/wbsoft/frescobaldi/releases/download/v2.0.13/frescobaldi-2.0.13.tar.gz"
  sha1 "8d3f0ceb0d5cc66b6bee6278fc2dad07e3f361f8"
  option "without-launcher", "Don't build Mac .app launcher"
  option "without-lilypond", "Don't install Lilypond"
  depends_on :python
  depends_on "portmidi" => :recommended
  depends_on "lilypond" => :recommended
  depends_on "platypus" => :build if build.with? "launcher"
  # python-poppler-qt4 dependencies
  depends_on "poppler" => "with-qt4"
  depends_on "pyqt"
  depends_on "pkg-config" => :build
  resource "python-poppler-qt4" do
    url "https://python-poppler-qt4.googlecode.com/files/python-poppler-qt4-0.16.3.tar.gz"
    sha1 "fe6aa650a1a917caeedd407ae0c428a5de9eefb8"
  end
  def install
    resource("python-poppler-qt4").stage do
      system "python", "setup.py", "build"
      system "python", "setup.py", "install"
    end
    system "python", "setup.py", "install", "--prefix=#{prefix}"
    if build.with? "launcher"
      system "platypus", "-aFrescobaldi", "-oNone",
             bin/"frescobaldi", bin/"Frescobaldi.app"
    end
  end
end
  |