blob: 258daecb3671e63b0ef67b2b6687e26113e1e5db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Gsoap < Formula
homepage 'http://www.cs.fsu.edu/~engelen/soap.html'
url 'http://sourceforge.net/projects/gsoap2/files/gSOAP/gsoap_2.8.15.zip'
sha1 '3238ea70fcd3356bd2e7cd3d1e2ef91c1040b81a'
def install
ENV.deparallelize
system './configure', "--prefix=#{prefix}"
system 'make install'
end
def test
system "#{bin}/soapcpp2", "-v"
end
end
|