c4a65f8798
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
52 lines
1.4 KiB
Ruby
52 lines
1.4 KiB
Ruby
require 'formula'
|
|
|
|
class Couchpotatoserver < Formula
|
|
homepage 'https://couchpota.to'
|
|
url 'https://github.com/RuudBurger/CouchPotatoServer/archive/build/2.2.1.tar.gz'
|
|
sha1 'f0b53952130858a0cdab8b3a52f41320b6d11b2e'
|
|
|
|
head 'https://github.com/RuudBurger/CouchPotatoServer.git'
|
|
|
|
def install
|
|
prefix.install_metafiles
|
|
libexec.install Dir['*']
|
|
(bin+"couchpotatoserver").write(startup_script)
|
|
end
|
|
|
|
plist_options :manual => 'couchpotatoserver'
|
|
|
|
def plist; <<-EOS.undent
|
|
<!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>Program</key>
|
|
<string>#{opt_prefix}/bin/couchpotatoserver</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>--quiet</string>
|
|
<string>--daemon</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>UserName</key>
|
|
<string>#{`whoami`.chomp}</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
def startup_script; <<-EOS.undent
|
|
#!/bin/bash
|
|
python "#{libexec}/CouchPotato.py"\
|
|
"--pid_file=#{var}/run/couchpotatoserver.pid"\
|
|
"--data_dir=#{etc}/couchpotatoserver"\
|
|
"$@"
|
|
EOS
|
|
end
|
|
|
|
def caveats
|
|
"CouchPotatoServer defaults to port 5050."
|
|
end
|
|
end
|