homebrew-core/Formula/orc-tools.rb
2018-01-23 11:12:12 +01: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.4.1/orc-tools-1.4.1-uber.jar"
sha256 "aa172e8d1b89e0410d15e83fb9f04be541ba5c47076aedc9be4a71bc4803bd26"
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