aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gant.rb
blob: a3225046dfd6b843f9380215446e649889a5d1a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Gant < Formula
  homepage 'http://gant.codehaus.org/'
  url 'http://dist.codehaus.org/gant/distributions/gant-1.9.5-_groovy-1.8.0.tgz'
  version '1.9.5'
  md5 '2ea01f1a4c803fd88e15fe2d8290e969'

  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