aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorClinton R. Nixon2009-09-06 00:43:00 -0400
committerMax Howell2009-09-14 20:33:46 +0100
commit9ec05cf09ec634d86e187a5392b21fb139edeb49 (patch)
treee0322ec45139d146f6f11c9fc3b0fe25af935a7b /Library/Formula
parentc13a32382ee5dbd93d1dc67137addd6a57a94c71 (diff)
downloadhomebrew-9ec05cf09ec634d86e187a5392b21fb139edeb49.tar.bz2
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.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/apache-ant.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/apache-ant.rb b/Library/Formula/apache-ant.rb
new file mode 100644
index 000000000..893ea5e08
--- /dev/null
+++ b/Library/Formula/apache-ant.rb
@@ -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