homebrew-core/Formula/gsoap.rb
Jaime Marquínez Ferrándiz 74c83fa9f6 Batch convert http download urls from SourceForge to https
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02 09:16:53 -08:00

17 lines
397 B
Ruby

require 'formula'
class Gsoap < Formula
homepage 'http://www.cs.fsu.edu/~engelen/soap.html'
url 'https://downloads.sourceforge.net/project/gsoap2/gSOAP/gsoap_2.8.17.zip'
sha1 'd6c483ea2eabade138d71d005300be909be9a274'
def install
ENV.deparallelize
system './configure', "--prefix=#{prefix}"
system 'make install'
end
test do
system "#{bin}/soapcpp2", "-v"
end
end