2012-05-13 18:08:56 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class VertX < Formula
|
|
|
|
homepage 'http://vertx.io/'
|
2012-10-25 23:05:02 +00:00
|
|
|
url 'http://vertx.io/downloads/vert.x-1.3.0.final.tar.gz'
|
|
|
|
sha1 '143737e91dcaf85280275241ae1a2d5bc507831a'
|
2012-05-13 18:08:56 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
rm_f Dir["bin/*.bat"]
|
2012-10-04 21:09:30 +00:00
|
|
|
libexec.install %w[bin client conf lib examples]
|
|
|
|
doc.install %w[api-docs]
|
2012-05-13 18:08:56 +00:00
|
|
|
bin.install_symlink "#{libexec}/bin/vertx"
|
|
|
|
end
|
|
|
|
end
|