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'
|
|
|
|
|
|
|
|
class Aqbanking <Formula
|
2010-02-13 11:20:39 +00:00
|
|
|
url 'http://www2.aquamaniac.de/sites/download/download.php?package=03&release=50&file=01&dummy=aqbanking-4.2.4.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/'
|
2010-02-13 11:20:39 +00:00
|
|
|
md5 '244f5c6e470b55452d9f2cb6c081c137'
|
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
|
2010-01-24 12:22:45 +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 'qt3' # for gui frontends
|
|
|
|
|
|
|
|
def install
|
2010-06-16 18:50:36 +00:00
|
|
|
fails_with_llvm "llvm results in a sigsegfault during compile"
|
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
|
|
|
configure_args = [
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--with-frontends=cli",
|
2010-02-13 11:13:00 +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 "./configure", *configure_args
|
|
|
|
ENV.j1
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|