cd521a39af
Closes Homebrew/homebrew#28460. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
359 B
Ruby
14 lines
359 B
Ruby
require 'formula'
|
|
|
|
class VertX < Formula
|
|
homepage 'http://vertx.io/'
|
|
url 'http://dl.bintray.com/vertx/downloads/vert.x-2.1RC3.tar.gz'
|
|
sha1 'a45e0d468262c7bc9308771e46bd1f318f2dabb6'
|
|
|
|
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
|