82 lines
2.5 KiB
Ruby
82 lines
2.5 KiB
Ruby
class Minio < Formula
|
|
desc "Amazon S3 compatible object storage server"
|
|
homepage "https://github.com/minio/minio"
|
|
url "https://github.com/minio/minio.git",
|
|
:tag => "RELEASE.2020-01-16T22-40-29Z",
|
|
:revision => "c6b218e5df44e04eba640230459df9566dfeae5a"
|
|
version "20200116224029"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "e584671c27c83343eccce696bd4275e977a7cfbad4b9d7e4187d87f8582644f3" => :catalina
|
|
sha256 "24db78a94f2912ab8a52ac52749bb768dc5bf31e2617ba55980358a8dde07627" => :mojave
|
|
sha256 "8b93cbaf9c3f9f985453af6da0b9c7384c1ec6965474894d451f924b8804ce60" => :high_sierra
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
if build.head?
|
|
system "go", "build", "-trimpath", "-o", bin/"minio"
|
|
else
|
|
release = `git tag --points-at HEAD`.chomp
|
|
version = release.gsub(/RELEASE\./, "").chomp.gsub(/T(\d+)\-(\d+)\-(\d+)Z/, 'T\1:\2:\3Z')
|
|
commit = `git rev-parse HEAD`.chomp
|
|
proj = "github.com/minio/minio"
|
|
|
|
system "go", "build", "-trimpath", "-o", bin/"minio", "-ldflags", <<~EOS
|
|
-X #{proj}/cmd.Version=#{version}
|
|
-X #{proj}/cmd.ReleaseTag=#{release}
|
|
-X #{proj}/cmd.CommitID=#{commit}
|
|
EOS
|
|
end
|
|
|
|
prefix.install_metafiles
|
|
end
|
|
|
|
def post_install
|
|
(var/"minio").mkpath
|
|
(etc/"minio").mkpath
|
|
end
|
|
|
|
plist_options :manual => "minio server"
|
|
|
|
def plist
|
|
<<~EOS
|
|
<?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>KeepAlive</key>
|
|
<true/>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/minio</string>
|
|
<string>server</string>
|
|
<string>--config-dir=#{etc}/minio</string>
|
|
<string>--address=:9000</string>
|
|
<string>#{var}/minio</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>KeepAlive</key>
|
|
<true/>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{HOMEBREW_PREFIX}</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>#{var}/log/minio.log</string>
|
|
<key>StandardOutPath</key>
|
|
<string>#{var}/log/minio.log</string>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/minio", "--version"
|
|
end
|
|
end
|