homebrew-core/Formula/treeline.rb

15 lines
366 B
Ruby
Raw Normal View History

2010-10-19 08:22:17 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Treeline < Formula
2010-10-19 08:22:17 +00:00
homepage 'http://treeline.bellz.org/'
url 'http://sourceforge.net/projects/treeline/files/1.4.1/treeline-1.4.1.tar.gz'
sha1 'ac5ef60fbb02e2295868134b8e3068c2f905c170'
2010-10-19 08:22:17 +00:00
depends_on 'pyqt'
def install
ENV.prepend "PYTHONPATH", "#{HOMEBREW_PREFIX}/lib/python"
2010-10-20 05:14:43 +00:00
system "./install.py", "-p#{prefix}"
2010-10-19 08:22:17 +00:00
end
end