homebrew-core/Formula/curl.rb
Jack Nagel cd9f49873d curl 7.22.0
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-10-09 15:56:27 -05:00

16 lines
490 B
Ruby

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