blob: 0fefccde9eb59c597d39e81a7a6ef078df254c0b (
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://downloads.sourceforge.net/project/treeline/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
|