aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/vert.x.rb
blob: 017e34162afcc942e23d7d8f8cfd95108b3a1af8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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