homebrew-core/Formula/embulk.rb
Guo Xiao 8795ae6a9a embulk 0.6.5
Closes Homebrew/homebrew#39271.

Signed-off-by: Tim D. Smith <git@tim-smith.us>
2015-05-07 00:08:46 -07:00

22 lines
638 B
Ruby

class Embulk < Formula
homepage "http://www.embulk.org/"
url "https://bintray.com/artifact/download/embulk/maven/embulk-0.6.5.jar"
sha256 "fdb45887060777f3b216793c256959fa6018bab516dbcebfb95648a1a78839c8"
depends_on :java
skip_clean "libexec"
def install
(libexec/"bin").install "embulk-0.6.5.jar" => "embulk"
chmod 0755, libexec/"bin/embulk"
bin.write_exec_script libexec/"bin/embulk"
end
test do
system "embulk", "example", "./try1"
system "embulk", "guess", "./try1/example.yml", "-o", "config.yml"
system "embulk", "preview", "config.yml"
system "embulk", "run", "config.yml"
end
end