aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/elasticsearch.rb
blob: 2195b9f9603962e010d263beb31ea9cba1294317 (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.5.1.zip'
  homepage 'http://www.elasticsearch.com'
  md5 'c438c0d18bef8d2efd2d801fa872a3fa'

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