aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAlexis Hildebrandt2009-12-28 13:53:25 +0100
committerMax Howell2010-01-24 12:27:39 +0000
commitb92fbe4e51f8aa17fa396de06c2c73bb20188e64 (patch)
tree577f8efa9d682f815243b53391947efc3b3a9d16 /Library
parent9fa9f6ed471b7eefb356159b10b07358db691280 (diff)
downloadhomebrew-b92fbe4e51f8aa17fa396de06c2c73bb20188e64.tar.bz2
Ktoblzcheck 1.12
A library to check account numbers and bank codes of German banks. Both a library for other programs as well as a short command-line tool is available. It is possible to check pairs of account numbers and bank codes (BLZ) of German banks, and to map bank codes (BLZ) to the clear-text name and location of the bank.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ktoblzcheck.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/ktoblzcheck.rb b/Library/Formula/ktoblzcheck.rb
new file mode 100644
index 000000000..978edc1d7
--- /dev/null
+++ b/Library/Formula/ktoblzcheck.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Ktoblzcheck <Formula
+ url 'http://freefr.dl.sourceforge.net/project/ktoblzcheck/ktoblzcheck/ktoblzcheck-1.24.tar.gz'
+ homepage 'http://ktoblzcheck.sourceforge.net/'
+ md5 '6385d5eca2db5f7eb3bd49312166eaf7'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make"
+ ENV.j1
+ system "make install"
+ end
+end