homebrew-core/Formula/curl.rb
Bart Leusink b2c4265c93 curl 7.24.0
Closes Homebrew/homebrew#10507.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-02-26 09:21:33 -08:00

16 lines
490 B
Ruby

require 'formula'
class Curl < Formula
homepage 'http://curl.haxx.se/'
url 'http://curl.haxx.se/download/curl-7.24.0.tar.bz2'
sha256 'ebdb111088ff8b0e05b1d1b075e9f1608285e8105cc51e21caacf33d01812c16'
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