homebrew-core/Formula/gsoap.rb
Victor Martinez 8dc451e3e2 Fixed several broken sourceforge.net download locations
Closes Homebrew/homebrew#20645.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-30 12:17:57 -07:00

17 lines
397 B
Ruby

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