homebrew-core/Formula/xmlrpc-c.rb

17 lines
549 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
url 'http://downloads.sourceforge.net/sourceforge/xmlrpc-c/xmlrpc-c-1.06.39.tgz'
md5 'ec62fb15cca83ffeaf6a8d53b5ec8614'
homepage 'http://xmlrpc-c.sourceforge.net/'
def install
ENV.deparallelize
# choosing --enable-libxml2-backend to lose some weight and not statically
# link in expat
#NOTE seemingly it isn't possible to build dylibs with this thing
system "./configure", "--disable-debug", "--enable-libxml2-backend", "--prefix=#{prefix}"
system "make install"
end
2011-03-10 05:11:03 +00:00
end