homebrew-core/Formula/xmlrpc-c.rb
Chris Lucas 2d1464dc2b xmlrpc-c 1.25.21
note: patch is no longer needed as of 1.25.08

Closes Homebrew/homebrew#18603.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-03-20 13:46:15 -05:00

19 lines
571 B
Ruby

require 'formula'
class XmlrpcC < Formula
homepage 'http://xmlrpc-c.sourceforge.net/'
url 'http://svn.code.sf.net/p/xmlrpc-c/code/stable', :revision => 2452
version '1.25.21'
def install
ENV.deparallelize
# --enable-libxml2-backend to lose some weight and not statically link in expat
system "./configure", "--disable-debug",
"--enable-libxml2-backend",
"--prefix=#{prefix}"
# xmlrpc-config.h cannot be found if only calling make install
system "make"
system "make install"
end
end