7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
23 lines
747 B
Ruby
23 lines
747 B
Ruby
require 'formula'
|
|
|
|
class Aqbanking <Formula
|
|
url 'http://www2.aquamaniac.de/sites/download/download.php?package=03&release=50&file=01&dummy=aqbanking-4.2.4.tar.gz'
|
|
homepage 'http://www.aqbanking.de/'
|
|
md5 '244f5c6e470b55452d9f2cb6c081c137'
|
|
|
|
depends_on 'gettext'
|
|
depends_on 'gmp'
|
|
depends_on 'gwenhywfar'
|
|
depends_on 'ktoblzcheck' => :optional
|
|
|
|
def install
|
|
fails_with_llvm "llvm results in a sigsegfault during compile"
|
|
ENV.j1
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--with-frontends=cli",
|
|
"--with-gwen-dir=#{HOMEBREW_PREFIX}"
|
|
system "make install"
|
|
end
|
|
end
|