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-08-03 02:23:47 +00:00
|
|
|
url 'http://curl.haxx.se/download/curl-7.21.7.tar.bz2'
|
|
|
|
sha256 '1a50dd17400c042090203eef347e946f29c342c32b6c4843c740c80975e8215a'
|
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
|