homebrew-core/Formula/ant.rb
Max Howell d036aedb85 Apache Ant should be named Ant
See updated naming guidelines on the wiki.
2009-09-30 17:24:05 +01:00

15 lines
365 B
Ruby

require 'brewkit'
# TODO common aliases: 'apache ant'
class Ant <Formula
@url='http://www.ibiblio.org/pub/mirrors/apache/ant/binaries/apache-ant-1.7.1-bin.tar.gz'
@homepage='http://ant.apache.org/'
@md5='cc5777c57c4e8269be5f3d1dc515301c'
def install
prefix.install Dir['*']
File.unlink Dir['bin/*.cmd']
File.unlink Dir['bin/*.bat']
end
end