2013-10-28 19:44:20 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Ant < Formula
|
|
|
|
homepage 'http://ant.apache.org/'
|
2013-12-29 14:49:55 +00:00
|
|
|
url 'http://www.apache.org/dyn/closer.cgi?path=ant/binaries/apache-ant-1.9.3-bin.tar.gz'
|
|
|
|
sha1 '11a0b936fba02f96b8d737d90c610382232ffea6'
|
2013-10-28 19:44:20 +00:00
|
|
|
|
|
|
|
keg_only :provided_by_osx if MacOS.version < :mavericks
|
|
|
|
|
|
|
|
def install
|
|
|
|
rm Dir['bin/*.{bat,cmd,dll,exe}']
|
|
|
|
libexec.install Dir['*']
|
|
|
|
bin.install_symlink Dir["#{libexec}/bin/*"]
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2014-01-17 04:29:18 +00:00
|
|
|
(testpath/'build.xml').write <<-EOS.undent
|
|
|
|
<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.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"
|
2013-10-28 19:44:20 +00:00
|
|
|
end
|
|
|
|
end
|