2012-01-19 22:40:02 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Gsoap < Formula
|
|
|
|
homepage 'http://www.cs.fsu.edu/~engelen/soap.html'
|
2013-02-02 02:10:56 +00:00
|
|
|
url 'http://sourceforge.net/projects/gsoap2/files/gSOAP/gsoap_2.8.13.zip'
|
|
|
|
sha1 '8236bf4c214755d77ceed7e581baf0142c2034fe'
|
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
|