homebrew-core/Formula/znc.rb
Kyle Fuller 5253f8ef36 ZNC does not depend on c-ares
Closes Homebrew/homebrew#20257.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-04 10:31:02 -07:00

31 lines
697 B
Ruby

require 'formula'
class Znc < Formula
homepage 'http://wiki.znc.in/ZNC'
url 'http://znc.in/releases/archive/znc-1.0.tar.gz'
sha1 '50e6e3aacb67cf0a63d77f5031d4b75264cee294'
head 'https://github.com/znc/znc.git'
if build.head?
depends_on :automake
depends_on :libtool
end
depends_on 'pkg-config' => :build
skip_clean 'bin/znc'
skip_clean 'bin/znc-config'
skip_clean 'bin/znc-buildmod'
option 'enable-debug', "Compile ZNC with --enable-debug"
def install
args = ["--prefix=#{prefix}"]
args << "--enable-debug" if build.include? 'enable-debug'
system "./autogen.sh" if build.head?
system "./configure", *args
system "make install"
end
end