aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/c-ares.rb
blob: ae169a5d35387caa87ca26fe1597d48ca69e4548 (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.7.3.tar.gz'
  homepage 'http://c-ares.haxx.se/'
  md5 '97ebef758804a6e9b6c0bc65d3c2c25a'

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