diffuse 0.4.6

Closes Homebrew/homebrew#17295.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Timothy L Gilbert 2013-01-24 17:40:09 -05:00 committed by Adam Vandenberg
parent 80d9ca70db
commit 31efabaddf
1 changed files with 20 additions and 0 deletions

20
Formula/diffuse.rb Normal file
View File

@ -0,0 +1,20 @@
require 'formula'
class Diffuse < Formula
homepage 'http://diffuse.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/diffuse/diffuse/0.4.6/diffuse-0.4.6.tar.bz2'
sha1 '29439e2a069ec00bc50347a59ec410d79ab3735e'
depends_on 'pygtk'
def install
system "python", "./install.py",
"--sysconfdir=#{etc}",
"--examplesdir=#{share}",
"--prefix=#{prefix}"
end
def test
system "#{bin}/diffuse", "--help"
end
end