homebrew-core/Formula/vert.x.rb
Clement Escoffier 7f23ef7bad vert.x 3.3.2 (#2909)
Update the vert.x formula to 3.3.2.
2016-07-12 00:53:59 +01:00

28 lines
780 B
Ruby

class VertX < Formula
desc "Toolkit for building reactive applications on the JVM."
homepage "http://vertx.io/"
url "https://dl.bintray.com/vertx/downloads/vert.x-3.3.2-full.tar.gz"
sha256 "49479e82cd5444c693f24a4fb8bad1694f77a3137dc1c66d6dc1ffec0ecc3ac0"
bottle :unneeded
def install
rm_f Dir["bin/*.bat"]
libexec.install %w[bin conf lib]
bin.install_symlink "#{libexec}/bin/vertx"
end
test do
(testpath/"HelloWorld.java").write <<-EOS.undent
import io.vertx.core.AbstractVerticle;
public class HelloWorld extends AbstractVerticle {
public void start() {
System.out.println("Hello World!");
vertx.close();
System.exit(0);
}
}
EOS
system "#{bin}/vertx", "run", "HelloWorld.java"
end
end