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

class Elasticsearch < Formula
  url 'https://github.com/downloads/elasticsearch/elasticsearch/elasticsearch-0.11.0.zip'
  homepage 'http://www.elasticsearch.com'
  md5 'ef19e6fc7bad8f76e4371a94de7e0da7'

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