051bf93184
Closes Homebrew/homebrew#33682. Signed-off-by: Jack Nagel <jacknagel@gmail.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.4.tar.gz'
|
|
sha1 '91414ee4c427bb7b4613de78d2eaaa511c41919c'
|
|
|
|
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
|