homebrew-core/Formula/curl.rb

17 lines
455 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Curl < Formula
url 'http://curl.haxx.se/download/curl-7.21.2.tar.bz2'
homepage 'http://curl.haxx.se/'
md5 'ca96df88e044c7c25d19692ec8b250b2'
2011-03-16 05:01:31 +00:00
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