New formula: Homebank

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
master
Alexey 2010-11-20 12:30:16 +01:00 committed by Mike McQuaid
parent 28b6ff87bb
commit 927a185a42
1 changed files with 19 additions and 0 deletions

19
Formula/homebank.rb Executable file
View File

@ -0,0 +1,19 @@
require 'formula'
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