aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/c-ares.rb
blob: 3d953f5bdb77fa55ff69c52b40d9676768149b8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class CAres <Formula
  url 'http://c-ares.haxx.se/c-ares-1.6.0.tar.gz'
  homepage 'http://c-ares.haxx.se/'
  md5 '4503b0db3dd79d3c1f58d87722dbab46'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end