aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/xml-security-c.rb
blob: b3e045cff7e21cd822bf61f0df6ddad58a5b7cee (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/'
  sha1 '239304659752eb214f3516b6c457c99f0e6467c7'

  depends_on 'xerces-c'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end