diff options
| author | david.hkc | 2013-05-27 16:31:39 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-07-12 09:46:55 -0700 |
| commit | 78cbc28cb7e8a0212b574433b0c3e0b3d47432b7 (patch) | |
| tree | ec71312a851e2721e9e37c8a28936d9421bc2903 /Library/Formula/xml-security-c.rb | |
| parent | 8bc4c46616295aa18802ba88a0320a7a9293001f (diff) | |
| download | homebrew-78cbc28cb7e8a0212b574433b0c3e0b3d47432b7.tar.bz2 | |
xml-security-c 1.7.2
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/xml-security-c.rb')
| -rw-r--r-- | Library/Formula/xml-security-c.rb | 15 |
1 files changed, 15 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..64d9600eb --- /dev/null +++ b/Library/Formula/xml-security-c.rb @@ -0,0 +1,15 @@ +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 |
