homebrew-core/Formula/vert.x.rb
Cristobal Dabed 4cf47dee05 vert.x 2.1M3
Closes Homebrew/homebrew#26120.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-23 10:47:59 -08: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.1M3.tar.gz'
sha1 'f880cb78b116f27c303021d2eaa8e6fd00c2850b'
version '2.1M3'
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