homebrew-core/Formula/znc.rb

33 lines
752 B
Ruby

require 'formula'
class Znc < Formula
homepage 'http://wiki.znc.in/ZNC'
url 'http://znc.in/releases/archive/znc-0.206.tar.gz'
sha1 'c5fe2575ef29187d2de5d08a08e17458c0ce54b9'
head 'https://github.com/znc/znc.git'
if build.head?
depends_on :automake
depends_on :libtool
end
depends_on 'pkg-config' => :build
depends_on 'c-ares' => :optional
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}", "--enable-extra"]
args << "--enable-debug" if build.include? 'enable-debug'
system "./autogen.sh" if build.head?
system "./configure", *args
system "make install"
end
end