aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/xml-security-c.rb14
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