homebrew-core/Formula/c-ares.rb

15 lines
389 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class CAres < Formula
2009-11-26 06:46:19 +00:00
homepage 'http://c-ares.haxx.se/'
url 'http://c-ares.haxx.se/download/c-ares-1.10.0.tar.gz'
sha1 'e44e6575d5af99cb3a38461486e1ee8b49810eb5'
def install
system "./configure", "--prefix=#{prefix}",
'--disable-dependency-tracking',
'--disable-debug'
system "make install"
end
end