homebrew-core/Formula/apache-drill.rb

21 lines
625 B
Ruby
Raw Normal View History

class ApacheDrill < Formula
desc "Schema-free SQL query engine for Hadoop and NoSQL"
homepage "https://drill.apache.org/download/"
url "https://www.apache.org/dyn/closer.cgi?path=drill/drill-1.6.0/apache-drill-1.6.0.tar.gz"
mirror "https://archive.apache.org/dist/drill/drill-1.6.0/apache-drill-1.6.0.tar.gz"
sha256 "3ab36cf985272d89971b9a918a2484feccc2881bcf09da611edafdce686a9502"
2015-10-22 12:53:34 +00:00
bottle :unneeded
def install
libexec.install Dir["*"]
bin.write_exec_script Dir["#{libexec}/bin/*"]
end
test do
2015-12-18 23:37:19 +00:00
ENV.java_cache
pipe_output("#{bin}/sqlline -u jdbc:drill:zk=local", "!tables", 0)
end
end