aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/xmlrpc-c.rb
blob: 7ab33a05e837f7ee8f7afa2c03e72fa797649a5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class XmlrpcC < Formula
  homepage 'http://xmlrpc-c.sourceforge.net/'
  url 'http://downloads.sourceforge.net/sourceforge/xmlrpc-c/xmlrpc-c-1.16.39.tgz'
  md5 'e88c9ee202890d726405b3bdfb00cfaf'

  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