blob: 18c80b2bb001659760853ecf615a4ee51fed29b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Curl < Formula
url 'http://curl.haxx.se/download/curl-7.21.2.tar.bz2'
homepage 'http://curl.haxx.se/'
md5 'ca96df88e044c7c25d19692ec8b250b2'
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
|