homebrew-core/Formula/xml-security-c.rb
david.hkc fb09a1b934 xml-security-c 1.7.2
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-07-12 09:46:55 -07:00

15 lines
450 B
Ruby

require 'formula'
class XmlSecurityC < Formula
homepage 'http://santuario.apache.org/'
url 'http://www.apache.org/dyn/closer.cgi?path=/santuario/c-library/xml-security-c-1.7.2.tar.gz'
sha1 'fee59d5347ff0666802c8e5aa729e0304ee492bc'
depends_on 'pkg-config' => :build
depends_on 'xerces-c'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end