require 'formula' class Curl < Formula homepage 'http://curl.haxx.se/' url 'http://curl.haxx.se/download/curl-7.22.0.tar.bz2' sha256 'bda0da862322b122784f5a9d7a65efdd99a6061292cfb8e9357e0c67c03e5112' keg_only :provided_by_osx, "The libcurl provided by Leopard is too old for CouchDB to use." def install system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make install" end end