2012-05-13 18:08:56 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class VertX < Formula
|
|
|
|
homepage 'http://vertx.io/'
|
2014-01-30 12:37:59 +00:00
|
|
|
url 'http://dl.bintray.com/vertx/downloads/vert.x-2.1M5.tar.gz'
|
|
|
|
sha1 '29695bdce55908823423596aeca344bc142c31cb'
|
|
|
|
version '2.1M5'
|
2012-05-13 18:08:56 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
rm_f Dir["bin/*.bat"]
|
2013-07-20 17:52:35 +00:00
|
|
|
libexec.install %w[bin client conf lib]
|
2012-10-04 21:09:30 +00:00
|
|
|
doc.install %w[api-docs]
|
2012-05-13 18:08:56 +00:00
|
|
|
bin.install_symlink "#{libexec}/bin/vertx"
|
|
|
|
end
|
|
|
|
end
|