aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libofx.rb
blob: 19763caa1965bb70680296527ec2ba7f7f56ce9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'formula'

class Libofx < Formula
  homepage 'http://libofx.sourceforge.net'
  url 'https://downloads.sourceforge.net/project/libofx/libofx/0.9.9/libofx-0.9.9.tar.gz'
  sha1 'b8ea875cee16953166449de8ddd1b69fb181f61b'

  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