96 lines
3.1 KiB
Ruby
96 lines
3.1 KiB
Ruby
class Minio < Formula
|
|
desc "High Performance, Kubernetes Native Object Storage"
|
|
homepage "https://min.io"
|
|
url "https://github.com/minio/minio.git",
|
|
tag: "RELEASE.2021-02-24T18-44-45Z",
|
|
revision: "c1a49be639e6e0e297e39b4001672eb08f4c8b92"
|
|
version "20210224184445"
|
|
license "Apache-2.0"
|
|
head "https://github.com/minio/minio.git"
|
|
|
|
livecheck do
|
|
url :stable
|
|
regex(%r{href=.*?/tag/(?:RELEASE[._-]?)?([\d\-TZ]+)["' >]}i)
|
|
strategy :github_latest do |page, regex|
|
|
page.scan(regex).map { |match| match&.first&.gsub(/\D/, "") }
|
|
end
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "3cb06f1245819f6622a26dc7b0c618e40d88c6cb6c80ac47d5dfa7465c64976a"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "5ca9f975f6e12c5ebb751d94b4149c5686ed47eaaab8ce0a04bc3b9dcd37ce05"
|
|
sha256 cellar: :any_skip_relocation, catalina: "d116e20ebf0aee3804a351235298115ad03c4d9bb48128870d834a60535ba806"
|
|
sha256 cellar: :any_skip_relocation, mojave: "e704ee0a811c0ca8eb35d35e92f70615956b074d6e1e956c93d47744adbcfa5c"
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
if build.head?
|
|
system "go", "build", *std_go_args
|
|
else
|
|
release = `git tag --points-at HEAD`.chomp
|
|
version = release.gsub(/RELEASE\./, "").chomp.gsub(/T(\d+)-(\d+)-(\d+)Z/, 'T\1:\2:\3Z')
|
|
proj = "github.com/minio/minio"
|
|
|
|
system "go", "build", *std_go_args, "-ldflags", <<~EOS
|
|
-X #{proj}/cmd.Version=#{version}
|
|
-X #{proj}/cmd.ReleaseTag=#{release}
|
|
-X #{proj}/cmd.CommitID=#{Utils.git_head}
|
|
EOS
|
|
end
|
|
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
|
|
assert_match "minio server - start object storage server",
|
|
shell_output("#{bin}/minio server --help 2>&1")
|
|
|
|
assert_match "minio gateway - start object storage gateway",
|
|
shell_output("#{bin}/minio gateway 2>&1")
|
|
assert_match "ERROR Unable to validate credentials",
|
|
shell_output("#{bin}/minio gateway s3 2>&1", 1)
|
|
end
|
|
end
|