homebrew-core/Formula/minio.rb
2019-08-02 02:05:57 +08:00

89 lines
2.7 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.2019-07-31T18-57-56Z",
:revision => "123cccaed1a303cb159fbed01eced44bc2a3197e"
version "20190731185756"
bottle do
cellar :any_skip_relocation
sha256 "02d3768d6895f6d8892fdf4fc26fb48a0bfb226b249104e8d824d70df9bf3230" => :mojave
sha256 "1d50e1f1f7cf0e7d7ff0a830d8b2c3fa2c7266477c462ac00eedfc4e7214ef8b" => :high_sierra
sha256 "8e0f11067a96bf259335ca54828c7fed774b7202430fdad7344755bbd54c146a" => :sierra
end
depends_on "go" => :build
def install
ENV["GOPATH"] = buildpath
ENV["GO111MODULE"] = "on"
src = buildpath/"src/github.com/minio/minio"
src.install buildpath.children
src.cd 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.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