require 'formula' class Gitbucket < Formula homepage 'https://github.com/takezoe/gitbucket' url 'https://github.com/takezoe/gitbucket/releases/download/2.0/gitbucket.war' sha256 '95060786c0ec898593c21995dc95ffbb89d43c2501c83ed4631b8201fa53219e' 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 end est.rb'>logtreecommitdiffstats
path: root/Library/Formula/cpputest.rb
blob: ddc7d4ff9b9e7219762ec97dd3ad13b739580b8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18