class Gitbucket < Formula homepage "https://github.com/takezoe/gitbucket" url "https://github.com/takezoe/gitbucket/releases/download/3.2/gitbucket.war" sha256 "639d9b7ae1aa2a4c59f275a80aa39d09f7cf202d518ca341f339041e1678ee1a" head do url "https://github.com/takezoe/gitbucket.git" depends_on :ant => :build end def install if build.head? system "ant" libexec.install "war/target/gitbucket.war", "." else libexec.install "gitbucket.war" end end plist_options :manual => "java -jar #{HOMEBREW_PREFIX}/opt/gitbucket/libexec/gitbucket.war" def plist; <<-EOS.undent Label gitbucket ProgramArguments /usr/bin/java -Dmail.smtp.starttls.enable=true -jar #{opt_libexec}/gitbucket.war --host=127.0.0.1 --port=8080 RunAtLoad EOS end def caveats; <<-EOS.undent Note: When using launchctl the port will be 8080. EOS end test do io = IO.popen("java -jar #{libexec}/gitbucket.war") sleep 12 Process.kill("SIGINT", io.pid) Process.wait(io.pid) io.read !~ /Exception/ end end