aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/elasticsearch.rb
blob: 813b5b864619a8d2fd4113df4e1092d2af377b0c (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.7.0.zip'
  homepage 'http://www.elasticsearch.com'
  md5 '6f71e1306d7fba1b1fc1c3d48641feb9'

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