2012-01-19 22:40:02 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Gsoap < Formula
|
|
|
|
homepage 'http://www.cs.fsu.edu/~engelen/soap.html'
|
2013-01-03 04:38:25 +00:00
|
|
|
url 'http://sourceforge.net/projects/gsoap2/files/gSOAP/gsoap_2.8.12.zip'
|
|
|
|
sha1 '6ff652dbee1b28a21c11ddcca64128fd647a992e'
|
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
|