aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gsoap.rb
blob: 6cba39b8422032c11a04ad38709a56f7b8dc0a63 (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.13.zip'
  sha1 '8236bf4c214755d77ceed7e581baf0142c2034fe'

  def install
    ENV.deparallelize
    system './configure', "--prefix=#{prefix}"
    system 'make install'
  end

  def test
    system "#{bin}/soapcpp2", "-v"
  end
end