7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
16 lines
377 B
Ruby
16 lines
377 B
Ruby
require 'formula'
|
|
|
|
class Gant <Formula
|
|
url 'http://dist.codehaus.org/gant/distributions/gant-1.9.1-_groovy-1.7.0.tgz'
|
|
version '1.9.1'
|
|
homepage 'http://gant.codehaus.org/'
|
|
md5 '646f29f42793520a3702b1f356f5d4a6'
|
|
|
|
depends_on 'groovy'
|
|
|
|
def install
|
|
rm_f Dir["bin/*.bat"]
|
|
# gant-starter.conf is found relative to bin
|
|
prefix.install %w[bin lib conf]
|
|
end
|
|
end
|