blob: 1860c800d1eb00f137e3d2b5468822cfd4571e25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class XmlSecurityC < Formula
url 'http://www.apache.org/dyn/closer.cgi?path=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
|