e8950ae6fb
Closes Homebrew/homebrew#25370. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
15 lines
376 B
Ruby
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
|