homebrew-core/Formula/embulk.rb
Michihito Shigemura 5b695b4fa6
embulk 0.9.16
Closes #37775.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2019-03-11 17:11:52 +08:00

27 lines
889 B
Ruby

class Embulk < Formula
desc "Data transfer between various databases, file formats and services"
homepage "https://www.embulk.org/"
url "https://bintray.com/artifact/download/embulk/maven/embulk-0.9.16.jar"
sha256 "a6c6d1414b7d1234e8565d66c18f4912d80b8b9ba60e297ef0bad22a19e5cc8d"
bottle :unneeded
depends_on :java => "1.8"
def install
# Execute through /bin/bash to be compatible with OS X 10.9.
libexec.install "embulk-#{version}.jar" => "embulk.jar"
(bin/"embulk").write <<~EOS
#!/bin/bash
export JAVA_HOME=$(#{Language::Java.java_home_cmd("1.8")})
exec /bin/bash "#{libexec}/embulk.jar" "$@"
EOS
end
test do
system bin/"embulk", "example", "./try1"
system bin/"embulk", "guess", "./try1/seed.yml", "-o", "config.yml"
system bin/"embulk", "preview", "config.yml"
system bin/"embulk", "run", "config.yml"
end
end