e32475400f
Update vert.x.rb to 2.1.5 Closes Homebrew/homebrew#34427. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
14 lines
358 B
Ruby
14 lines
358 B
Ruby
require 'formula'
|
|
|
|
class VertX < Formula
|
|
homepage 'http://vertx.io/'
|
|
url 'http://dl.bintray.com/vertx/downloads/vert.x-2.1.5.tar.gz'
|
|
sha1 'bac58701858462f13c0b01de99e2ada0a4df8431'
|
|
|
|
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
|