homebrew-core/Formula/orc-tools.rb
Dongjoon Hyun 85a29855d7
orc-tools 1.5.4
Closes #35435.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2018-12-25 18:09:57 +08:00

17 lines
537 B
Ruby

class OrcTools < Formula
desc "ORC java command-line tools and utilities"
homepage "https://orc.apache.org/"
url "https://search.maven.org/remotecontent?filepath=org/apache/orc/orc-tools/1.5.4/orc-tools-1.5.4-uber.jar"
sha256 "f798969900a9baa845570d16e3022fe0884c9788c48e70c0c242fbfa353f2652"
bottle :unneeded
def install
libexec.install "orc-tools-#{version}-uber.jar"
bin.write_jar_script libexec/"orc-tools-#{version}-uber.jar", "orc-tools"
end
test do
system "#{bin}/orc-tools", "meta", "-h"
end
end