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

class Elasticsearch < Formula
  url 'http://github.com/downloads/elasticsearch/elasticsearch/elasticsearch-0.6.0.zip'
  homepage 'http://www.elasticsearch.com'
  md5 'e3657a1970695c3d043341484b338af3'

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