homebrew-core/Formula/ant-contrib.rb

34 lines
927 B
Ruby

class AntContrib < Formula
desc "Collection of tasks for Apache Ant"
homepage "https://ant-contrib.sourceforge.io/"
url "https://downloads.sourceforge.net/project/ant-contrib/ant-contrib/1.0b3/ant-contrib-1.0b3-bin.tar.gz"
version "1.0b3"
sha256 "6e58c2ee65e1f4df031796d512427ea213a92ae40c5fc0b38d8ac82701f42a3c"
bottle :unneeded
depends_on "ant"
def install
(share+"ant").install "ant-contrib-1.0b3.jar"
share.install "docs"
end
test do
(testpath/"build.xml").write <<~EOS
<project name="HomebrewTest" default="init" basedir=".">
<taskdef resource="net/sf/antcontrib/antcontrib.properties"/>
<target name="init">
<if>
<equals arg1="BREW" arg2="BREW" />
<then>
<echo message="Test passes!"/>
</then>
</if>
</target>
</project>
EOS
system Formula["ant"].opt_bin/"ant"
end
end