homebrew-core/Formula/minio.rb
2018-12-29 09:55:22 +08:00

90 lines
2.6 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.2018-12-27T18-33-08Z",
:revision => "236796ebd695705910b0c485c889c1c626c97370"
version "20181227183308"
bottle do
cellar :any_skip_relocation
sha256 "d6344978e967894cdfac8d8c8b595034a6b6cb4e0db653f457aadd337849aec9" => :mojave
sha256 "cc62d6f16ba95649918ebd558771853344cc06bb40e424f0adf9ee8b5208d762" => :high_sierra
sha256 "01a71e810fd5ea108ff050058f2a3ca96bb1ff4c8454866fb53535e29798773e" => :sierra
end
depends_on "go" => :build
def install
ENV["GOPATH"] = buildpath
clipath = buildpath/"src/github.com/minio/minio"
clipath.install Dir["*"]
cd clipath do
if build.head?
system "go", "build", "-o", buildpath/"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", "-o", buildpath/"minio", "-ldflags", <<~EOS
-X #{proj}/cmd.Version=#{version}
-X #{proj}/cmd.ReleaseTag=#{release}
-X #{proj}/cmd.CommitID=#{commit}
EOS
end
end
bin.install buildpath/"minio"
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/output.log</string>
<key>StandardOutPath</key>
<string>#{var}/log/minio/output.log</string>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
EOS
end
test do
system "#{bin}/minio", "version"
end
end