diff options
| author | Olli Helenius | 2012-01-19 22:40:02 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2012-01-19 22:40:10 +0000 |
| commit | 66472f6a31e6e1a32b299d631681678d33489db5 (patch) | |
| tree | 56b135ebed554cf1e20d5e94ea1ef29dfb91a8d6 | |
| parent | bae5b33a0fe0cac2dab08bcb1530c80410d82535 (diff) | |
| download | homebrew-66472f6a31e6e1a32b299d631681678d33489db5.tar.bz2 | |
Add gSOAP formula, version 2.8.6
Closes #6210.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
| -rw-r--r-- | Library/Formula/gsoap.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/gsoap.rb b/Library/Formula/gsoap.rb new file mode 100644 index 000000000..25f97da9f --- /dev/null +++ b/Library/Formula/gsoap.rb @@ -0,0 +1,17 @@ +require 'formula' + +class Gsoap < Formula + url 'http://downloads.sourceforge.net/project/gsoap2/gSOAP/gsoap_2.8.6.zip' + homepage 'http://www.cs.fsu.edu/~engelen/soap.html' + md5 'c0b962c6216bcf59255dc4288783252f' + + def install + ENV.deparallelize + system './configure', "--prefix=#{prefix}" + system 'make install' + end + + def test + system "soapcpp2 -v" + end +end |
