diff options
| author | Alexey | 2010-11-20 12:30:16 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2010-11-20 11:53:50 +0000 |
| commit | 8827604f8ba9061063ef7b1db17caadced10c76a (patch) | |
| tree | 74f50a605be148bce95131907138648dbff439af /Library/Formula | |
| parent | a60cc4b0cf2ec748c1b9976c684d81285a919d97 (diff) | |
| download | homebrew-8827604f8ba9061063ef7b1db17caadced10c76a.tar.bz2 | |
New formula: Homebank
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
| -rwxr-xr-x | Library/Formula/homebank.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/homebank.rb b/Library/Formula/homebank.rb new file mode 100755 index 000000000..7d0385e45 --- /dev/null +++ b/Library/Formula/homebank.rb @@ -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 |
