6c161a37c1
Closes Homebrew/homebrew#21354. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
364 B
Ruby
14 lines
364 B
Ruby
require 'formula'
|
|
|
|
class VertX < Formula
|
|
homepage 'http://vertx.io/'
|
|
url 'http://dl.bintray.com/vertx/downloads/vert.x-2.0.0-final.tar.gz'
|
|
sha1 'afc65d74af1c603469869d99c7db129226ac0cbf'
|
|
|
|
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
|