homebrew-core/Formula/homebank.rb
aas 6a2d1b704a homebank 5.0.4
Homebank 5.0.4

Closes Homebrew/homebrew#43852.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-09-12 23:45:39 +01:00

37 lines
1.1 KiB
Ruby

class Homebank < Formula
desc "Manage your personal accounts at home"
homepage "http://homebank.free.fr"
url "http://homebank.free.fr/public/homebank-5.0.4.tar.gz"
sha256 "d78ccbef2ac52bf30e0ded093ca7b5162405f0ada7e5853c63d2b025e098c978"
bottle do
revision 1
sha256 "f6e9b9f19a0e86678d91dddc53760b0387fe6af32846e189d30222d560b04735" => :yosemite
sha256 "d215f28742deee07a858b4bdc224a231d92574fcf55fe31c4d7f95b83a1072cb" => :mavericks
sha256 "f733d5b201ab5408abf26bad47dc7393553c44d6f1e5248f6d8358217c8d8160" => :mountain_lion
end
depends_on "pkg-config" => :build
depends_on "intltool" => :build
depends_on "gettext"
depends_on "gtk+3"
depends_on "gnome-icon-theme"
depends_on "hicolor-icon-theme"
depends_on "freetype"
depends_on "fontconfig"
depends_on "libofx" => :optional
def install
args = ["--disable-dependency-tracking",
"--prefix=#{prefix}"]
args << "--with-ofx" if build.with? "libofx"
system "./configure", *args
chmod 0755, "./install-sh"
system "make", "install"
end
test do
system "#{bin}/homebank", "--version"
end
end