forked from cartr/homebrew-qt4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
treeline.rb
29 lines (24 loc) · 875 Bytes
/
treeline.rb
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
class Treeline < Formula
desc "Advanced outliner and personal information manager"
homepage "http://treeline.bellz.org/"
url "https://downloads.sourceforge.net/project/treeline/2.0.2/treeline-2.0.2.tar.gz"
sha256 "80379b6ebb5b825a02f4b8d0bb65d78f9895db5e25065f85353833e9d8ebd4c8"
revision 2
bottle :unneeded
depends_on "cartr/qt4/pyqt@4" => "with-python"
depends_on "python"
depends_on "sip" => "with-python"
def install
pyver = Language::Python.major_minor_version "python3"
ENV.delete "PYTHONPATH"
%w[sip pyqt].each do |f|
ENV.append_path "PYTHONPATH", "#{Formula[f].opt_lib}/python#{pyver}/site-packages"
end
system "./install.py", "-p#{libexec}"
bin.install Dir[libexec/"bin/*"]
bin.env_script_all_files(libexec/"bin", PYTHONPATH: ENV["PYTHONPATH"])
end
test do
system bin/"treeline", "--help"
end
end