homebrew-core/Formula/vert.x.rb
Aaron Spiegel 3d1897b5aa Vert-X 1.3.1
Closes Homebrew/homebrew#17721.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-09 09:19:58 -08:00

15 lines
379 B
Ruby

require 'formula'
class VertX < Formula
homepage 'http://vertx.io/'
url 'http://vertx.io/downloads/vert.x-1.3.1.final.tar.gz'
version '1.3.1'
sha1 '734358191245baf63047264008867e69e7d56bed'
def install
rm_f Dir["bin/*.bat"]
libexec.install %w[bin client conf lib examples]
doc.install %w[api-docs]
bin.install_symlink "#{libexec}/bin/vertx"
end
end