2d1464dc2b
note: patch is no longer needed as of 1.25.08 Closes Homebrew/homebrew#18603. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
19 lines
571 B
Ruby
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
|