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

class CAres < Formula
  url 'http://c-ares.haxx.se/download/c-ares-1.7.5.tar.gz'
  homepage 'http://c-ares.haxx.se/'
  md5 '800875fc23cd8e1924d8af9172ed33e7'

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