92 lines
3.3 KiB
Ruby
92 lines
3.3 KiB
Ruby
class Zrepl < Formula
|
|
desc "One-stop ZFS backup & replication solution"
|
|
homepage "https://zrepl.github.io"
|
|
url "https://github.com/zrepl/zrepl/archive/v0.1.1.tar.gz"
|
|
sha256 "0c16554e4527d14a390d78cf95bce759da425019a83ec63acfed5b4c50d68c9c"
|
|
head "https://github.com/zrepl/zrepl.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "8ece7cecbe0d7225996cc5844d3a470425cb943fd5c9052915780051e51a93da" => :catalina
|
|
sha256 "9cec0ea416a2a394452fac82be895e8931c8e882465518e237a2b847e3e168d7" => :mojave
|
|
sha256 "2fd02af7892953417e8a4e4322c40ea2e1e2ac0181719d5afeaa88df62a91029" => :high_sierra
|
|
sha256 "05827e523e9e3c6e25579abc41d7367cd877694d6f4a90174dd4f801a775f9e3" => :sierra
|
|
end
|
|
|
|
depends_on "dep" => :build
|
|
depends_on "go" => :build
|
|
|
|
resource "sample_config" do
|
|
url "https://raw.githubusercontent.com/zrepl/zrepl/master/config/samples/local.yml"
|
|
sha256 "f27b21716e6efdc208481a8f7399f35fd041183783e00c57f62b3a5520470c05"
|
|
end
|
|
|
|
def install
|
|
contents = Dir["{*,.git,.gitignore}"]
|
|
gopath = buildpath/"gopath"
|
|
(gopath/"src/github.com/zrepl/zrepl").install contents
|
|
|
|
ENV["GOPATH"] = gopath
|
|
ENV.prepend_create_path "PATH", gopath/"bin"
|
|
cd gopath/"src/github.com/zrepl/zrepl" do
|
|
system "dep", "ensure", "-v", "-vendor-only"
|
|
system "go", "build", "-o", "'$GOPATH/bin/stringer'", "./vendor/golang.org/x/tools/cmd/stringer"
|
|
system "go", "build", "-o", "'$GOPATH/bin/protoc-gen-go'", "./vendor/github.com/golang/protobuf/protoc-gen-go"
|
|
system "go", "build", "-o", "'$GOPATH/bin/enumer'", "./vendor/github.com/alvaroloes/enumer"
|
|
system "go", "build", "-o", "'$GOPATH/bin/goimports'", "./vendor/golang.org/x/tools/cmd/goimports"
|
|
system "go", "build", "-o", "'$GOPATH/bin/golangci-lint'", "./vendor/github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
system "make", "ZREPL_VERSION=#{version}"
|
|
bin.install "artifacts/zrepl"
|
|
end
|
|
end
|
|
|
|
def post_install
|
|
(var/"log/zrepl").mkpath
|
|
(var/"run/zrepl").mkpath
|
|
(etc/"zrepl").mkpath
|
|
end
|
|
|
|
plist_options :startup => true, :manual => "sudo zrepl daemon"
|
|
|
|
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>EnvironmentVariables</key>
|
|
<dict>
|
|
<key>PATH</key>
|
|
<string>/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:#{HOMEBREW_PREFIX}/bin</string>
|
|
</dict>
|
|
<key>KeepAlive</key>
|
|
<true/>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/zrepl</string>
|
|
<string>daemon</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>StandardErrorPath</key>
|
|
<string>#{var}/log/zrepl/zrepl.err.log</string>
|
|
<key>StandardOutPath</key>
|
|
<string>#{var}/log/zrepl/zrepl.out.log</string>
|
|
<key>ThrottleInterval</key>
|
|
<integer>30</integer>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{var}/run/zrepl</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
resources.each do |r|
|
|
r.verify_download_integrity(r.fetch)
|
|
assert_equal "", shell_output("#{bin}/zrepl configcheck --config #{r.cached_download}")
|
|
end
|
|
end
|
|
end
|