homebrew-core/Formula/libofx.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

21 lines
701 B
Ruby

class Libofx < Formula
desc "Library to support OFX command responses"
homepage "http://libofx.sourceforge.net"
url "https://downloads.sourceforge.net/project/libofx/libofx/0.9.9/libofx-0.9.9.tar.gz"
sha256 "94ef88c5cdc3e307e473fa2a55d4a05da802ee2feb65c85c63b9019c83747b23"
bottle do
revision 1
sha1 "29eeb5e7ddc45ea4c3a5a3f47304082a44046413" => :yosemite
sha1 "f1c1939e7ea13ba07997f563c8d275195dae9679" => :mavericks
sha1 "ac76937c8a7dded8bb89f1ece1ea9ede2f8e41a4" => :mountain_lion
end
depends_on "open-sp"
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end