aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gsoap.rb
blob: d068cf597c8289c86f58b4dc5c1258f365a6be61 (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.11.zip'
  sha1 'b1c17d501361939c6d419eeb2aa26e7fd2b586fe'

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

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