homebrew-core/Formula/gsoap.rb

17 lines
462 B
Ruby
Raw Normal View History

class Gsoap < Formula
desc "SOAP stub and skeleton compiler for C and C++"
2014-09-22 01:09:12 +00:00
homepage "http://www.cs.fsu.edu/~engelen/soap.html"
url "https://downloads.sourceforge.net/project/gsoap2/gSOAP/gsoap_2.8.18.zip"
sha256 "764281a67020b7b7b982ddf8e7fdffae27f7a3e61af9ab4ec8a4705a67ba7ced"
def install
ENV.deparallelize
2014-09-22 01:09:12 +00:00
system "./configure", "--prefix=#{prefix}"
system "make", "install"
end
test do
system "#{bin}/soapcpp2", "-v"
end
end