require "formula" class Couchpotatoserver < Formula homepage "https://couchpota.to" url "https://github.com/RuudBurger/CouchPotatoServer/archive/build/2.6.0.tar.gz" sha1 "7d7952daba686c840b9723495bf9f5bb61c8c6a8" 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 Label #{plist_name} Program #{opt_bin}/couchpotatoserver ProgramArguments --quiet --daemon RunAtLoad UserName #{`whoami`.chomp} 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