Aqbanking 4.2.1
A free library for online banking.
Aqbanking currently supports the HBCI, OFX Direct Connect, and
EBICS (only in commercial aqbanking-cli) protocol.
It provides an interface for:
- general online banking tasks
such as balance, transaction, transfers and debits
- retrieving bank information
for Germany, USA, Austria, and Switzerland
- country and currency information (e.g. ISO-Codex)
Applications using Aqbanking include AqBanking-CLI, QBankManager,
GnuCash, and KMyMoney.
Aqbanking is the successor of OpenHBCI2.
2009-12-28 12:56:46 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Aqbanking < Formula
|
2011-06-25 08:24:39 +00:00
|
|
|
url 'http://www.aquamaniac.de/sites/download/download.php?package=03&release=78&file=01&dummy=aqbanking-5.0.10.tar.gz'
|
Aqbanking 4.2.1
A free library for online banking.
Aqbanking currently supports the HBCI, OFX Direct Connect, and
EBICS (only in commercial aqbanking-cli) protocol.
It provides an interface for:
- general online banking tasks
such as balance, transaction, transfers and debits
- retrieving bank information
for Germany, USA, Austria, and Switzerland
- country and currency information (e.g. ISO-Codex)
Applications using Aqbanking include AqBanking-CLI, QBankManager,
GnuCash, and KMyMoney.
Aqbanking is the successor of OpenHBCI2.
2009-12-28 12:56:46 +00:00
|
|
|
homepage 'http://www.aqbanking.de/'
|
2011-04-27 20:42:22 +00:00
|
|
|
md5 'b50c28887fc9fd2fc9a4d9fc996497e6'
|
2011-06-25 08:24:39 +00:00
|
|
|
head 'http://devel.aqbanking.de/svn/aqbanking/trunk'
|
Aqbanking 4.2.1
A free library for online banking.
Aqbanking currently supports the HBCI, OFX Direct Connect, and
EBICS (only in commercial aqbanking-cli) protocol.
It provides an interface for:
- general online banking tasks
such as balance, transaction, transfers and debits
- retrieving bank information
for Germany, USA, Austria, and Switzerland
- country and currency information (e.g. ISO-Codex)
Applications using Aqbanking include AqBanking-CLI, QBankManager,
GnuCash, and KMyMoney.
Aqbanking is the successor of OpenHBCI2.
2009-12-28 12:56:46 +00:00
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
depends_on 'gettext'
|
Aqbanking 4.2.1
A free library for online banking.
Aqbanking currently supports the HBCI, OFX Direct Connect, and
EBICS (only in commercial aqbanking-cli) protocol.
It provides an interface for:
- general online banking tasks
such as balance, transaction, transfers and debits
- retrieving bank information
for Germany, USA, Austria, and Switzerland
- country and currency information (e.g. ISO-Codex)
Applications using Aqbanking include AqBanking-CLI, QBankManager,
GnuCash, and KMyMoney.
Aqbanking is the successor of OpenHBCI2.
2009-12-28 12:56:46 +00:00
|
|
|
depends_on 'gmp'
|
|
|
|
depends_on 'gwenhywfar'
|
|
|
|
depends_on 'ktoblzcheck' => :optional
|
|
|
|
|
|
|
|
def install
|
|
|
|
ENV.j1
|
2010-04-07 05:58:35 +00:00
|
|
|
system "./configure", "--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
2011-02-16 10:02:12 +00:00
|
|
|
"--enable-cli",
|
2010-04-07 05:58:35 +00:00
|
|
|
"--with-gwen-dir=#{HOMEBREW_PREFIX}"
|
Aqbanking 4.2.1
A free library for online banking.
Aqbanking currently supports the HBCI, OFX Direct Connect, and
EBICS (only in commercial aqbanking-cli) protocol.
It provides an interface for:
- general online banking tasks
such as balance, transaction, transfers and debits
- retrieving bank information
for Germany, USA, Austria, and Switzerland
- country and currency information (e.g. ISO-Codex)
Applications using Aqbanking include AqBanking-CLI, QBankManager,
GnuCash, and KMyMoney.
Aqbanking is the successor of OpenHBCI2.
2009-12-28 12:56:46 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|