2013-01-24 22:40:09 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Diffuse < Formula
|
|
|
|
homepage 'http://diffuse.sourceforge.net/'
|
2013-05-23 14:25:40 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/diffuse/diffuse/0.4.7/diffuse-0.4.7.tar.bz2'
|
|
|
|
sha1 '9e3b906b579495027b76dc723b5df28e400d3f26'
|
2013-01-24 22:40:09 +00:00
|
|
|
|
2013-01-21 09:33:56 +00:00
|
|
|
depends_on :python
|
2013-01-24 22:40:09 +00:00
|
|
|
depends_on 'pygtk'
|
|
|
|
|
|
|
|
def install
|
2013-01-21 09:33:56 +00:00
|
|
|
python do
|
|
|
|
system python, "./install.py",
|
2013-01-24 22:40:09 +00:00
|
|
|
"--sysconfdir=#{etc}",
|
|
|
|
"--examplesdir=#{share}",
|
|
|
|
"--prefix=#{prefix}"
|
2013-01-21 09:33:56 +00:00
|
|
|
end
|
2013-01-24 22:40:09 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
|
|
|
system "#{bin}/diffuse", "--help"
|
|
|
|
end
|
|
|
|
end
|