92e657c1a4
Closes Homebrew/homebrew#25030. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
17 lines
436 B
Ruby
17 lines
436 B
Ruby
require 'formula'
|
|
|
|
class Gant < Formula
|
|
homepage 'http://gant.codehaus.org/'
|
|
url 'http://dist.codehaus.org/gant/distributions/gant-1.9.10-_groovy-2.2.0.zip'
|
|
version '1.9.10'
|
|
sha1 '90095416f659b626863b38acd4ca83d2ff65285a'
|
|
|
|
depends_on 'groovy'
|
|
|
|
def install
|
|
rm_f Dir["bin/*.bat"]
|
|
# gant-starter.conf is found relative to bin
|
|
libexec.install %w[bin lib conf]
|
|
bin.install_symlink "#{libexec}/bin/gant"
|
|
end
|
|
end
|