blob: fca666ad4454fad94f3c9db2552f8a25473a07f7 (
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.4.tar.gz'
  homepage 'http://c-ares.haxx.se/'
  md5 'dd71e8f07d9f3c837e12a5416d1b7f73'
  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end
  |