New formula XMLTooling
Lower-level library that provides a higher level interface to XML processing, particularly in light of signing and encryption.
This commit is contained in:
parent
f8dc1737c4
commit
01e14851ec
1 changed files with 17 additions and 0 deletions
17
Formula/xml-tooling-c.rb
Normal file
17
Formula/xml-tooling-c.rb
Normal file
|
@ -0,0 +1,17 @@
|
|||
require 'formula'
|
||||
|
||||
class XmlToolingC <Formula
|
||||
url 'http://shibboleth.internet2.edu/downloads/opensaml/cpp/latest/xmltooling-1.3.3.tar.gz'
|
||||
homepage 'https://spaces.internet2.edu/display/OpenSAML/XMLTooling-C'
|
||||
md5 '3074edc8a00bba1d26c02e798ea8039c'
|
||||
|
||||
depends_on 'pkg-config'
|
||||
depends_on 'log4shib'
|
||||
depends_on 'xerces-c'
|
||||
depends_on 'xml-security-c'
|
||||
|
||||
def install
|
||||
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue