blob: 5bb50a328f903cf17dc9a09817929b92567a1513 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
require 'formula'
class CAres < Formula
  homepage 'http://c-ares.haxx.se/'
  url 'http://c-ares.haxx.se/download/c-ares-1.10.0.tar.gz'
  sha1 'e44e6575d5af99cb3a38461486e1ee8b49810eb5'
  def install
    system "./configure", "--prefix=#{prefix}",
                          '--disable-dependency-tracking',
                          '--disable-debug'
    system "make install"
  end
end
  |