aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/opensaml.rb
blob: a9d5b3eaa5a9a0f63df4cdd9f97d37f83d7d1d8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Opensaml < Formula
  url 'http://shibboleth.internet2.edu/downloads/opensaml/cpp/2.3/opensaml-2.3.tar.gz'
  homepage 'https://spaces.internet2.edu/display/OpenSAML/'
  md5 '9695d40cb28519c2cde8211cd1c3dc69'

  depends_on 'pkg-config' => :build
  depends_on 'log4shib'
  depends_on 'xerces-c'
  depends_on 'xml-security-c'
  depends_on 'xml-tooling-c'

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