2009-12-17 19:55:27 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Curl < Formula
|
2009-12-17 19:55:27 +00:00
|
|
|
homepage 'http://curl.haxx.se/'
|
2011-04-27 16:53:06 +00:00
|
|
|
url 'http://curl.haxx.se/download/curl-7.21.6.tar.bz2'
|
|
|
|
sha256 'd9a3d3593796147ad9ca994c9e6834a42b49756420a10e996dbf849495d3d955'
|
2009-12-17 19:55:27 +00:00
|
|
|
|
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."
|
2010-11-09 21:20:56 +00:00
|
|
|
|
2009-12-17 19:55:27 +00:00
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|