2eda39526f
Closes #32725. Signed-off-by: Chongyu Zhu <i@lembacon.com>
17 lines
537 B
Ruby
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.3/orc-tools-1.5.3-uber.jar"
|
|
sha256 "1b8f170d72049bdb1e424dd46c744d924dd7643970410f2a32ac89d51b23c00a"
|
|
|
|
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
|