xmlrpc-c 1.33.17

Closes Homebrew/homebrew#39403.

Signed-off-by: Brett Koonce <koonce@gmail.com>
This commit is contained in:
Baptiste Fontaine 2015-05-05 20:58:02 +02:00 committed by Brett Koonce
parent e34c05d2bf
commit a4625a1b57

View file

@ -1,9 +1,7 @@
require 'formula'
class XmlrpcC < Formula
homepage 'http://xmlrpc-c.sourceforge.net/'
url 'http://svn.code.sf.net/p/xmlrpc-c/code/stable', :revision => 2489
version '1.33.03'
homepage "http://xmlrpc-c.sourceforge.net/"
url "https://downloads.sourceforge.net/project/xmlrpc-c/Xmlrpc-c%20Super%20Stable/1.33.17/xmlrpc-c-1.33.17.tgz"
sha256 "50118a3ca1114828f7cae27b7253cc25045849e487f5d0bb91d962777fc05355"
def install
ENV.deparallelize
@ -13,6 +11,10 @@ class XmlrpcC < Formula
# xmlrpc-config.h cannot be found if only calling make install
system "make"
system "make install"
system "make", "install"
end
test do
system "#{bin}/xmlrpc-c-config", "--features"
end
end