aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/log4shib.rb
blob: 95ed51bb960fcfac281106faf3d2bdd1d8cee491 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Log4shib < Formula
  homepage 'https://wiki.shibboleth.net/confluence/display/OpenSAML/log4shib'
  url 'http://shibboleth.net/downloads/log4shib/1.0.8/log4shib-1.0.8.tar.gz'
  sha1 '407c70935917a59034acba4e63803d32465af641'

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