homebrew-core/Formula/vert.x.rb
Taro FURUKAWA e8950ae6fb vert.x 2.1M2
Closes Homebrew/homebrew#25370.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-12-20 23:25:16 -06:00

15 lines
376 B
Ruby

require 'formula'
class VertX < Formula
homepage 'http://vertx.io/'
url 'http://dl.bintray.com/vertx/downloads/vert.x-2.1M2.tar.gz'
sha1 'eedfe222212287749b01a3dd53cb8224d896ee1a'
version '2.1M2'
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