4f68aa091b
vert.x 2.1M5 Closes Homebrew/homebrew#26283. Signed-off-by: Mike McQuaid <mike@mikemcquaid.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.1M5.tar.gz'
|
|
sha1 '29695bdce55908823423596aeca344bc142c31cb'
|
|
version '2.1M5'
|
|
|
|
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
|