homebrew-core/Formula/gsoap.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

16 lines
462 B
Ruby

class Gsoap < Formula
desc "SOAP stub and skeleton compiler for C and C++"
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
system "./configure", "--prefix=#{prefix}"
system "make", "install"
end
test do
system "#{bin}/soapcpp2", "-v"
end
end