homebrew-core/Formula/vert.x.rb
Pablo O Vieira 2f059def08 Vert.x 2.1.1
Closes Homebrew/homebrew#30547.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-06-29 18:55:12 -05:00

14 lines
358 B
Ruby

require 'formula'
class VertX < Formula
homepage 'http://vertx.io/'
url 'http://dl.bintray.com/vertx/downloads/vert.x-2.1.1.tar.gz'
sha1 'b11d13e641e8115a8ffeff758626e950382d1a2d'
def install
rm_f Dir["bin/*.bat"]
libexec.install %w[bin client conf lib]
doc.install %w[api-docs]
bin.install_symlink "#{libexec}/bin/vertx"
end
end