homebrew-core/Formula/libofx.rb
Victor Martinez 8dc451e3e2 Fixed several broken sourceforge.net download locations
Closes Homebrew/homebrew#20645.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-30 12:17:57 -07:00

15 lines
405 B
Ruby

require 'formula'
class Libofx < Formula
homepage 'http://libofx.sourceforge.net'
url 'http://downloads.sourceforge.net/project/libofx/libofx/0.9.8/libofx-0.9.8.tar.gz'
sha1 'e0159d77c4458eb937871373db85c9f392e86554'
depends_on 'open-sp'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end