homebrew-core/Formula/xmlrpc-c.rb
Mike Arthur b3900f37dd Be nicer to Sourceforge by using their gateway server
Thus we download from the best mirror always.
2009-12-05 15:09:31 +00:00

16 lines
No EOL
543 B
Ruby

require 'formula'
class XmlrpcC <Formula
@url='http://downloads.sourceforge.net/sourceforge/xmlrpc-c/xmlrpc-c-1.06.33.tgz'
@md5='7dda4d8c5d26ae877d3809e428ce7962'
@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
end