homebrew-core/Formula/c-ares.rb

13 lines
265 B
Ruby
Raw Normal View History

require 'formula'
class CAres <Formula
2010-06-19 16:53:49 +00:00
url 'http://c-ares.haxx.se/c-ares-1.7.3.tar.gz'
2009-11-26 06:46:19 +00:00
homepage 'http://c-ares.haxx.se/'
2010-06-19 16:53:49 +00:00
md5 '97ebef758804a6e9b6c0bc65d3c2c25a'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end