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.
This commit is contained in:
parent
00e54dbf66
commit
2b5296c3f2
1 changed files with 14 additions and 0 deletions
14
Formula/apache-ant.rb
Normal file
14
Formula/apache-ant.rb
Normal file
|
@ -0,0 +1,14 @@
|
|||
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
|
Loading…
Reference in a new issue