2012-01-19 22:40:02 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Gsoap < Formula
|
|
|
|
homepage 'http://www.cs.fsu.edu/~engelen/soap.html'
|
2012-10-17 21:26:49 +00:00
|
|
|
url 'http://sourceforge.net/projects/gsoap2/files/gSOAP/gsoap_2.8.11.zip'
|
|
|
|
sha1 'b1c17d501361939c6d419eeb2aa26e7fd2b586fe'
|
2012-01-19 22:40:02 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
ENV.deparallelize
|
|
|
|
system './configure', "--prefix=#{prefix}"
|
|
|
|
system 'make install'
|
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
2012-05-15 21:36:45 +00:00
|
|
|
system "#{bin}/soapcpp2", "-v"
|
2012-01-19 22:40:02 +00:00
|
|
|
end
|
|
|
|
end
|