homebrew-core/Formula/c-ares.rb

13 lines
275 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class CAres < Formula
2011-08-30 22:16:30 +00:00
url 'http://c-ares.haxx.se/download/c-ares-1.7.5.tar.gz'
2009-11-26 06:46:19 +00:00
homepage 'http://c-ares.haxx.se/'
2011-08-30 22:16:30 +00:00
md5 '800875fc23cd8e1924d8af9172ed33e7'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end