homebrew-core/Formula/homebank.rb

20 lines
494 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Homebank < Formula
url 'http://homebank.free.fr/public/homebank-4.3.tar.gz'
homepage 'http://homebank.free.fr'
md5 '1a5d51c8c1233e0f707f6190636bc8a2'
depends_on 'intltool'
depends_on 'gettext'
depends_on 'gtk+'
depends_on 'hicolor-icon-theme'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "chmod +x ./install-sh"
system "make install"
end
end