aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/vert.x.rb
blob: b8d893500298b53a306f72e49e11411abaec1cb0 (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://vertx.io/downloads/vert.x-1.3.0.final.tar.gz'
  sha1 '143737e91dcaf85280275241ae1a2d5bc507831a'

  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