homebrew-core/Formula/xml-tooling-c.rb
Steffen Matthischke bcfd5441b6 xml-tooling-c 1.5.3
Closes Homebrew/homebrew#23206.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-10-11 19:45:23 +01:00

19 lines
577 B
Ruby

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 'boost149'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end