homebrew-core/Formula/embulk.rb
Hiroshi Hatake 051fa24cd8 embulk 0.8.3
Closes Homebrew/homebrew#48990.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2016-02-09 02:59:19 +00:00

25 lines
752 B
Ruby

class Embulk < Formula
desc "Data transfer between various databases, file formats and services"
homepage "http://www.embulk.org/"
url "https://bintray.com/artifact/download/embulk/maven/embulk-0.8.3.jar"
sha256 "7302019e524d13bda92233a5dbd72a6d3624cd25ff091fe83a0c76b71d800d21"
bottle :unneeded
depends_on :java
skip_clean "libexec"
def install
(libexec/"bin").install "embulk-#{version}.jar" => "embulk"
chmod 0755, libexec/"bin/embulk"
bin.write_exec_script libexec/"bin/embulk"
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