aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hadoop.rb
blob: de723b09d74b69f83018de5b93eba417801c42d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Hadoop < Formula
  url 'http://www.carfab.com/apachesoftware/hadoop/core/hadoop-0.20.2/hadoop-0.20.2.tar.gz'
  homepage 'http://hadoop.apache.org/common/'
  md5 '8f40198ed18bef28aeea1401ec536cb9'

  def install
    rm_f Dir["bin/*.bat"]
    prefix.install %w[bin conf contrib lib]
  end
end