2013-01-24 22:40:09 +00:00
|
|
|
class Diffuse < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Graphical tool for merging and comparing text files"
|
2014-08-17 16:31:45 +00:00
|
|
|
homepage "http://diffuse.sourceforge.net/"
|
|
|
|
url "https://downloads.sourceforge.net/project/diffuse/diffuse/0.4.8/diffuse-0.4.8.tar.bz2"
|
2015-05-21 15:18:09 +00:00
|
|
|
sha256 "c1d3b79bba9352fcb9aa4003537d3fece248fb824781c5e21f3fcccafd42df2b"
|
2013-01-24 22:40:09 +00:00
|
|
|
|
2014-08-17 16:31:45 +00:00
|
|
|
depends_on "pygtk"
|
2013-01-24 22:40:09 +00:00
|
|
|
|
|
|
|
def install
|
2014-01-04 13:04:15 +00:00
|
|
|
system "python", "./install.py",
|
2013-01-24 22:40:09 +00:00
|
|
|
"--sysconfdir=#{etc}",
|
|
|
|
"--examplesdir=#{share}",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
end
|
|
|
|
|
2014-02-23 21:31:41 +00:00
|
|
|
test do
|
2013-01-24 22:40:09 +00:00
|
|
|
system "#{bin}/diffuse", "--help"
|
|
|
|
end
|
|
|
|
end
|