aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/xml-security-c.rb
blob: f2e196957d74849e33e5fa252551fdc2bfbcd1bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class XmlSecurityC <Formula
  url 'http://santuario.apache.org/dist/c-library/xml-security-c-1.5.1.tar.gz'
  homepage 'http://santuario.apache.org/'
  md5 '2c47c4ec12e8d6abe967aa5e5e99000c'

  depends_on 'xerces-c'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end