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

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

  depends_on :python
  depends_on 'pyqt'

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