aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gsoap.rb
blob: 147c023027a2b7557e24b3d5be8fd9f97184ec4d (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://downloads.sourceforge.net/project/gsoap2/gSOAP/gsoap_2.8.17.zip'
  sha1 'd6c483ea2eabade138d71d005300be909be9a274'

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

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