77c73ecb89
Some of these were pointing at archive.apache.org. Now they aren’t, I investigated for good rationale for using the archive before altering it. mod_python still uses archive.apache.org as that is the only place it exists that I could find. jsvc *now* uses apache.archive.org as the formula was otherwise broken and the binary tarball it needs no longer exists on the main mirrors.
14 lines
394 B
Ruby
14 lines
394 B
Ruby
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
|