2010-02-19 04:45:45 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Gant < Formula
|
2012-02-12 19:40:53 +00:00
|
|
|
homepage 'http://gant.codehaus.org/'
|
2013-12-07 13:29:56 +00:00
|
|
|
url 'http://dist.codehaus.org/gant/distributions/gant-1.9.10-_groovy-2.2.0.zip'
|
|
|
|
version '1.9.10'
|
|
|
|
sha1 '90095416f659b626863b38acd4ca83d2ff65285a'
|
2010-02-19 04:45:45 +00:00
|
|
|
|
|
|
|
depends_on 'groovy'
|
2010-04-07 05:58:35 +00:00
|
|
|
|
2010-02-19 04:45:45 +00:00
|
|
|
def install
|
|
|
|
rm_f Dir["bin/*.bat"]
|
|
|
|
# gant-starter.conf is found relative to bin
|
2010-08-13 15:08:20 +00:00
|
|
|
libexec.install %w[bin lib conf]
|
2012-02-12 19:40:53 +00:00
|
|
|
bin.install_symlink "#{libexec}/bin/gant"
|
2010-02-19 04:45:45 +00:00
|
|
|
end
|
|
|
|
end
|