diff options
| author | David Höppner | 2010-02-13 19:16:23 +0100 |
|---|---|---|
| committer | David Höppner | 2010-02-13 19:16:23 +0100 |
| commit | 0402502cad52e55c65b758f897fc62694227d5cd (patch) | |
| tree | 856335cb094b666bfea16d1b6d3993b52b8e69b8 /Library | |
| parent | fdb11296c8f94a88347f87010ea936727af1045c (diff) | |
| download | homebrew-0402502cad52e55c65b758f897fc62694227d5cd.tar.bz2 | |
New formula XML Security
The XML Security project is aimed at providing implementation of
security standards for XML.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/xml-security-c.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/xml-security-c.rb b/Library/Formula/xml-security-c.rb new file mode 100644 index 000000000..f2e196957 --- /dev/null +++ b/Library/Formula/xml-security-c.rb @@ -0,0 +1,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 |
