homebrew-core/Formula/apache-ant.rb
Clinton R. Nixon 2b5296c3f2 Ant formula
Ant is a Java-based build tool. In theory, it is kind of like Make, without
Make's wrinkles and with the full portability of pure Java code.
2009-09-14 20:33:46 +01:00

14 lines
315 B
Ruby

require 'brewkit'
# TODO common aliases: ant
class ApacheAnt <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'
@version='1.7.1'
def install
prefix.install Dir['*']
end
end