blob: 35bf6c79cbba59cb9232bd7bce1ca1a15c08d754 (
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=%2Fsantuario%2Fc-library%2Fxml-security-c-1.6.1.tar.gz'
  homepage 'http://santuario.apache.org/'
  md5 '808316c80a7453b6d50a0bceb7ebe9bc'
  depends_on 'xerces-c'
  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end
 |