51 lines
1.7 KiB
Ruby
51 lines
1.7 KiB
Ruby
class AntAT19 < Formula
|
|
desc "Java build tool"
|
|
homepage "https://ant.apache.org/"
|
|
url "https://www.apache.org/dyn/closer.cgi?path=ant/binaries/apache-ant-1.9.9-bin.tar.bz2"
|
|
sha256 "482059b1e54c9b64e0efec686cbee7acc2ad4905d04024b31864feb7b63fc72d"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "e5c63d1ca61047baee2f0edebea21508782460c98a1d325727e376cfc7e1cbef" => :high_sierra
|
|
sha256 "c61398b93dc90ac3b56df0eca3fb3d7059fa81ce3bd2e4c18bb2701b5455d839" => :sierra
|
|
sha256 "de8ab34d71e40db90fe53ea2c311351f73598063eebd82cdcd467f6d93143626" => :el_capitan
|
|
sha256 "de8ab34d71e40db90fe53ea2c311351f73598063eebd82cdcd467f6d93143626" => :yosemite
|
|
end
|
|
|
|
keg_only :versioned_formula
|
|
|
|
def install
|
|
rm Dir["bin/*.{bat,cmd,dll,exe}"]
|
|
libexec.install Dir["*"]
|
|
bin.install_symlink Dir["#{libexec}/bin/*"]
|
|
rm bin/"ant"
|
|
(bin/"ant").write <<~EOS
|
|
#!/bin/sh
|
|
#{libexec}/bin/ant -lib #{HOMEBREW_PREFIX}/share/ant "$@"
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
(testpath/"build.xml").write <<~EOS
|
|
<project name="HomebrewTest" basedir=".">
|
|
<property name="src" location="src"/>
|
|
<property name="build" location="build"/>
|
|
<target name="init">
|
|
<mkdir dir="${build}"/>
|
|
</target>
|
|
<target name="compile" depends="init">
|
|
<javac srcdir="${src}" destdir="${build}"/>
|
|
</target>
|
|
</project>
|
|
EOS
|
|
(testpath/"src/main/java/org/homebrew/AntTest.java").write <<~EOS
|
|
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
|