blob: 1267cc699e05aeb96c44737db620053c56702825 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 | require 'formula'
class XmlToolingC < Formula
  homepage 'https://wiki.shibboleth.net/confluence/display/OpenSAML/XMLTooling-C'
  url 'http://shibboleth.net/downloads/c++-opensaml/2.5.3/xmltooling-1.5.3.tar.gz'
  sha1 'b8498a8dafe18bf612a6651ab7af662add5c2a68'
  depends_on 'pkg-config' => :build
  depends_on 'log4shib'
  depends_on 'xerces-c'
  depends_on 'xml-security-c'
  depends_on 'boost'
  def install
    ENV.O2 # Os breaks the build
    system "./configure", "--disable-debug",
                          "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
 |