homebrew-core/Formula/znc.rb

56 lines
1.4 KiB
Ruby

require 'formula'
class Znc < Formula
homepage 'http://wiki.znc.in/ZNC'
url 'http://znc.in/releases/archive/znc-1.2.tar.gz'
sha1 '69a05702d2db8329ed323e9f74408260ea82c0eb'
head do
url 'https://github.com/znc/znc.git'
depends_on :autoconf
depends_on :automake
depends_on :libtool
end
option 'enable-debug', "Compile ZNC with --enable-debug"
depends_on 'pkg-config' => :build
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
plist_options :manual => "znc --foreground"
def plist; <<-EOS.undent
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>#{plist_name}</string>
<key>ProgramArguments</key>
<array>
<string>#{bin}/znc</string>
<string>--foreground</string>
</array>
<key>StandardErrorPath</key>
<string>#{var}/log/znc.log</string>
<key>StandardOutPath</key>
<string>#{var}/log/znc.log</string>
<key>RunAtLoad</key>
<true/>
<key>StartInterval</key>
<integer>300</integer>
</dict>
</plist>
EOS
end
end