aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/homebank.rb
blob: 67d1923fb932aeeeac26aa252422d7d88fee319c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

class Homebank < Formula
  url 'http://homebank.free.fr/public/homebank-4.4.tar.gz'
  homepage 'http://homebank.free.fr'
  md5 '840ef7f2425207d9c03e1694cf4d3a0d'

  depends_on 'intltool'
  depends_on 'gettext'
  depends_on 'gtk+'
  depends_on 'hicolor-icon-theme'

  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "chmod +x ./install-sh"
    system "make install"
  end
end