class Ant < Formula homepage "https://ant.apache.org/" url "https://www.apache.org/dyn/closer.cgi?path=ant/binaries/apache-ant-1.9.4-bin.tar.bz2" sha256 "20c16575684b8869dd9d19abe0fb504566adefb5d397881e70a417886e0088cf" head "https://git-wip-us.apache.org/repos/asf/ant.git" bottle do cellar :any sha1 "56eee6f32ab55854b1ccbaa3e106129517e94f7f" => :mavericks sha1 "f09cd5546459a6172a60ed010444dde9cc94bac1" => :mountain_lion sha1 "5e90ad64f1bd68024f4fec659a6734629f349ea1" => :lion end keg_only :provided_by_osx if MacOS.version < :mavericks option "with-ivy", "Install ivy dependency manager" option "with-bcel", "Install Byte Code Engineering Library" resource "ivy" do url "https://www.apache.org/dyn/closer.cgi?path=ant/ivy/2.4.0/apache-ivy-2.4.0-bin.tar.gz" sha256 "7a3d13a80b69d71608191463dfc2a74fff8ef638ce0208e70d54d28ba9785ee9" end resource "bcel" do url "http://central.maven.org/maven2/org/apache/bcel/bcel/5.2/bcel-5.2.jar" sha256 "7b87e2fd9ac3205a6e5ba9ef5e58a8f0ab8d1a0e0d00cb2a761951fa298cc733" end def install rm Dir["bin/*.{bat,cmd,dll,exe}"] libexec.install Dir["*"] bin.install_symlink Dir["#{libexec}/bin/*"] if build.with? "ivy" resource("ivy").stage do (libexec/"lib").install Dir["ivy-*.jar"] end end if build.with? "bcel" resource("bcel").stage do (libexec/"lib").install Dir["bcel-*.jar"] end end end test do (testpath/"build.xml").write <<-EOS.undent EOS (testpath/"src/main/java/org/homebrew/AntTest.java").write <<-EOS.undent package org.homebrew; public class AntTest { public static void main(String[] args) { System.out.println("Testing Ant with Homebrew!"); } } EOS system "#{bin}/ant", "compile" end end