aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/xmlrpc-c.rb
blob: 87848086e1c8e8d08f3ef70770a8d24b48846846 (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.42.tgz'
  sha1 '7a71fabc652c2848a7226605432a2e420a02dff0'

  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