homebrew-core/Formula/diffuse.rb
Jaime Marquínez Ferrándiz 74c83fa9f6 Batch convert http download urls from SourceForge to https
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02 09:16:53 -08:00

20 lines
504 B
Ruby

require 'formula'
class Diffuse < Formula
homepage 'http://diffuse.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/diffuse/diffuse/0.4.7/diffuse-0.4.7.tar.bz2'
sha1 '9e3b906b579495027b76dc723b5df28e400d3f26'
depends_on 'pygtk'
def install
system "python", "./install.py",
"--sysconfdir=#{etc}",
"--examplesdir=#{share}",
"--prefix=#{prefix}"
end
test do
system "#{bin}/diffuse", "--help"
end
end