blob: d518a25cd8f2ae0ac00f7917c9721029c07f4dd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class VertX < Formula
homepage 'http://vertx.io/'
url 'http://dl.bintray.com/vertx/downloads/vert.x-2.1RC2.tar.gz'
sha1 'c8f8f2e5c7fdcffd460a7c0be980cdcfa9867f33'
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
|