aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/treeline.rb
blob: 699457605a0730b18c6cc4002db79a56e7d05e9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Treeline < Formula
  homepage 'http://treeline.bellz.org/'
  url 'http://sourceforge.net/projects/treeline/files/1.4.1/treeline-1.4.1.tar.gz'
  sha1 'ac5ef60fbb02e2295868134b8e3068c2f905c170'

  depends_on :python
  depends_on 'pyqt'

  def install
    python do
      system "./install.py", "-p#{prefix}"
    end
  end
end