5f2cc05f40
Closes Homebrew/homebrew#29683. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
14 lines
356 B
Ruby
14 lines
356 B
Ruby
require 'formula'
|
|
|
|
class VertX < Formula
|
|
homepage 'http://vertx.io/'
|
|
url 'http://dl.bintray.com/vertx/downloads/vert.x-2.1.tar.gz'
|
|
sha1 '77d4eff1ee042774a4c0e313a71db921d8ce12fa'
|
|
|
|
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
|