homebrew-core/Formula/c-ares.rb
Andre Arko 056466f303 Add znc, the advanced IRC proxy/bouncer
Includes recipes for znc and its dep, the c-ares lib
Now without stripping, so .so plugins will load
2009-09-15 17:30:40 -07:00

12 lines
268 B
Ruby

require 'brewkit'
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