homebrew-core/Formula/digdag.rb
2019-04-16 10:26:24 +02:00

24 lines
602 B
Ruby

class Digdag < Formula
desc "Workload Automation System"
homepage "https://www.digdag.io/"
url "https://dl.digdag.io/digdag-0.9.36.jar"
sha256 "ac792d67cab9e88b8c8ffc8b1ae3a8cc800e7d3f26d61820db4c12f52750e5b1"
bottle :unneeded
depends_on :java => "1.8+"
def install
libexec.install "digdag-#{version}.jar" => "digdag.jar"
# Create a wrapper script to support OS X 10.9.
(bin/"digdag").write <<~EOS
#!/bin/bash
exec /bin/bash "#{libexec}/digdag.jar" "$@"
EOS
end
test do
assert_match version.to_s, shell_output("#{bin}/digdag --version")
end
end