homebrew-core/Formula/znc.rb
Wil Moore III 7e0b03154b znc: add launchd plist
Closes Homebrew/homebrew#24603.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-11-23 10:15:09 -08:00

55 lines
1.4 KiB
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 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