homebrew-core/Formula/xmlrpc-c.rb

19 lines
526 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class XmlrpcC < Formula
2010-04-26 15:49:12 +00:00
homepage 'http://xmlrpc-c.sourceforge.net/'
url 'http://svn.code.sf.net/p/xmlrpc-c/code/stable', :revision => 2489
version '1.33.03'
def install
ENV.deparallelize
2012-03-10 22:29:37 +00:00
# --enable-libxml2-backend to lose some weight and not statically link in expat
system "./configure", "--enable-libxml2-backend",
2012-03-10 22:29:37 +00:00
"--prefix=#{prefix}"
# xmlrpc-config.h cannot be found if only calling make install
system "make"
system "make install"
end
2011-03-10 05:11:03 +00:00
end