homebrew-core/Formula/homebank.rb
aas 53bfdf4b9a Homebank 4.5
Closes Homebrew/homebrew#17258.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-01-22 08:23:31 -08:00

22 lines
568 B
Ruby

require 'formula'
class Homebank < Formula
homepage 'http://homebank.free.fr'
url 'http://homebank.free.fr/public/homebank-4.5.tar.gz'
sha1 'cb2b1435f46965eab44171bc6411fee1da754380'
depends_on 'pkg-config' => :build
depends_on 'intltool'
depends_on 'gettext'
depends_on 'gtk+'
depends_on 'hicolor-icon-theme'
depends_on :freetype
depends_on :fontconfig
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "chmod +x ./install-sh"
system "make install"
end
end