class Couchpotatoserver < Formula desc "Download movies automatically" homepage "https://couchpota.to" url "https://github.com/RuudBurger/CouchPotatoServer/archive/build/3.0.1.tar.gz" sha256 "f08f9c6ac02f66c6667f17ded1eea4c051a62bbcbadd2a8673394019878e92f7" head "https://github.com/RuudBurger/CouchPotatoServer.git" bottle :unneeded def install prefix.install_metafiles libexec.install Dir["*"] (bin+"couchpotatoserver").write(startup_script) end def caveats "CouchPotatoServer defaults to port 5050." 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 test do system "#{bin}/couchpotatoserver", "--help" end end