homebrew-core/Formula/xmlrpc-c.rb

17 lines
516 B
Ruby

require 'formula'
class XmlrpcC < Formula
homepage 'http://xmlrpc-c.sourceforge.net/'
url 'http://downloads.sourceforge.net/sourceforge/xmlrpc-c/xmlrpc-c-1.16.40.tgz'
md5 '0b5c026d48c21937261d90bdadda7248'
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}"
system "make install"
end
end