aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAlexey2010-11-20 12:30:16 +0100
committerMike McQuaid2010-11-20 11:53:50 +0000
commit8827604f8ba9061063ef7b1db17caadced10c76a (patch)
tree74f50a605be148bce95131907138648dbff439af /Library/Formula
parenta60cc4b0cf2ec748c1b9976c684d81285a919d97 (diff)
downloadhomebrew-8827604f8ba9061063ef7b1db17caadced10c76a.tar.bz2
New formula: Homebank
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rwxr-xr-xLibrary/Formula/homebank.rb19
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