require 'formula' class Couchpotatoserver < Formula homepage 'https://couchpota.to' url 'https://github.com/RuudBurger/CouchPotatoServer/archive/build/2.1.0.tar.gz' sha1 '04341a6c7889dee017dfef4bdf3ac0e5bcfe7d00' 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_prefix}/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