92794ee8ad
GitBucket 2.2.1 Closes Homebrew/homebrew#31350. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
51 lines
1.4 KiB
Ruby
51 lines
1.4 KiB
Ruby
require "formula"
|
|
|
|
class Gitbucket < Formula
|
|
homepage "https://github.com/takezoe/gitbucket"
|
|
url "https://github.com/takezoe/gitbucket/releases/download/2.2.1/gitbucket.war"
|
|
sha256 "a60b2dacc7351c02a198fdcc121c3e1fd4adf4b9529df06cc5976c58824b381e"
|
|
|
|
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
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>gitbucket</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>/usr/bin/java</string>
|
|
<string>-Dmail.smtp.starttls.enable=true</string>
|
|
<string>-jar</string>
|
|
<string>#{opt_libexec}/gitbucket.war</string>
|
|
<string>--host=127.0.0.1</string>
|
|
<string>--port=8080</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Note: When using launchctl the port will be 8080.
|
|
EOS
|
|
end
|
|
end
|