54e7d6f95f
Closes Homebrew/homebrew#16823. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
68 lines
1.6 KiB
Ruby
68 lines
1.6 KiB
Ruby
require 'formula'
|
|
|
|
class Sickbeard < Formula
|
|
homepage 'http://www.sickbeard.com/'
|
|
url 'https://github.com/midgetspy/Sick-Beard/tarball/build-498'
|
|
sha1 '39b57fadf7c5562e889f9203c0dac5212eab9b79'
|
|
|
|
head 'https://github.com/midgetspy/Sick-Beard.git'
|
|
|
|
depends_on 'Cheetah' => :python
|
|
|
|
def install
|
|
prefix.install Dir['*']
|
|
(bin+"sickbeard").write(startup_script)
|
|
end
|
|
|
|
plist_options :manual => 'sickbeard'
|
|
|
|
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>#{opt_prefix}/bin/sickbeard</string>
|
|
<string>-q</string>
|
|
<string>--nolaunch</string>
|
|
<string>-p</string>
|
|
<string>8081</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>UserName</key>
|
|
<string>#{`whoami`.chomp}</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
def startup_script; <<-EOS.undent
|
|
#!/usr/bin/env ruby
|
|
|
|
me = begin
|
|
File.expand_path(
|
|
File.join(
|
|
File.dirname(__FILE__),
|
|
File.readlink(__FILE__)
|
|
)
|
|
)
|
|
rescue
|
|
__FILE__
|
|
end
|
|
|
|
path = File.join(File.dirname(me), '..', 'SickBeard.py')
|
|
args = ["--pidfile=#{var}/run/sickbeard.pid", "--datadir=#{etc}/sickbeard"]
|
|
|
|
exec("python", path, *(args + ARGV))
|
|
EOS
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
SickBeard defaults to port 8081.
|
|
EOS
|
|
end
|
|
end
|