homebrew-core/Formula/embulk.rb

37 lines
1.2 KiB
Ruby

class Embulk < Formula
desc "Data transfer between various databases, file formats and services"
homepage "https://www.embulk.org/"
# https://www.embulk.org/articles/2020/03/13/embulk-v0.10.html
# v0.10.* is a "development" series, not for your production use.
# In your production, keep using v0.9.* stable series.
url "https://github.com/embulk/embulk/releases/download/v0.9.23/embulk-0.9.23.jar"
sha256 "153977fad482bf52100dd96f47e897c87b48de4fb13bccd6b3101475d3a5ebb9"
license "Apache-2.0"
revision 1
version_scheme 1
livecheck do
url :homepage
regex(%r{(?<!un)Stable.+?href=.*?/tag/v?(\d+(?:\.\d+)+)["' >]}im)
end
bottle do
sha256 cellar: :any_skip_relocation, all: "2ab7a8a004f97f65e320145bbb8a29ac6a7a4c076078fef29ba5f0ab0fea149c"
end
depends_on arch: :x86_64 # openjdk@8 is not supported on ARM
depends_on "openjdk@8"
def install
libexec.install "embulk-#{version}.jar"
bin.write_jar_script libexec/"embulk-#{version}.jar", "embulk", java_version: "1.8"
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