15 lines
384 B
Ruby
15 lines
384 B
Ruby
|
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
|