blob: 507dc374b7ea3514bd94ff410da558716db07cca (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
|
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 :python2
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
python do
resource("python-poppler-qt4").stage do
system "python", "setup.py", "build"
system "python", "setup.py", "install"
end
system "python", "setup.py", "install", "--prefix=#{prefix}"
end
if build.with? "launcher"
system "platypus", "-aFrescobaldi", "-oNone",
bin/"frescobaldi", bin/"Frescobaldi.app"
end
end
def caveats
if build.with? "launcher"
<<-EOS.undent
To install the Mac OS X launcher application run:
brew linkapps (to install in ~/Applications)
or:
ln -s #{bin}/Frescobaldi.app /Applications
EOS
end
end
end
|