homebrew-core/Formula/avro-tools.rb
Neville Kadwa 448fc3cfda avro tools 1.7.6
Closes Homebrew/homebrew#27676.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-28 07:48:45 -07:00

12 lines
372 B
Ruby

require "formula"
class AvroTools < Formula
homepage "http://avro.apache.org/"
url "http://www.apache.org/dyn/closer.cgi?path=avro/avro-1.7.6/java/avro-tools-1.7.6.jar"
sha1 "56ebab491e9dce5b1812c3867a8385cd636bb90a"
def install
libexec.install "avro-tools-#{version}.jar"
bin.write_jar_script libexec/"avro-tools-#{version}.jar", "avro-tools"
end
end