aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/vert.x.rb
diff options
context:
space:
mode:
authorCedric Gatay2012-05-13 20:08:56 +0200
committerAdam Vandenberg2012-09-28 20:19:39 -0700
commitf4a29079335c97178221a85209ef971382f2a67c (patch)
tree0b5949e3c7ccef8d4d99ecb8fe3430a795a8db68 /Library/Formula/vert.x.rb
parentc5d428f356b7df1fbde2d0d2893c6211809df9e6 (diff)
downloadhomebrew-f4a29079335c97178221a85209ef971382f2a67c.tar.bz2
Vert.x 1.2.3
Closes #12227. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/vert.x.rb')
-rw-r--r--Library/Formula/vert.x.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/vert.x.rb b/Library/Formula/vert.x.rb
new file mode 100644
index 000000000..5b0194b8a
--- /dev/null
+++ b/Library/Formula/vert.x.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class VertX < Formula
+ homepage 'http://vertx.io/'
+ url 'http://vertx.io/downloads/vert.x-1.2.3.final.tar.gz.html'
+ sha1 '11555bf76162a144063422e38c8d16eb8ea6913e'
+
+ def install
+ rm_f Dir["bin/*.bat"]
+ libexec.install %w[bin client conf lib mods]
+ doc.install %w[docs examples]
+ bin.install_symlink "#{libexec}/bin/vertx"
+ end
+end