diff options
| author | Mat Schaffer | 2010-04-09 09:34:11 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2010-04-30 12:52:15 -0700 |
| commit | 3420795ec5101ef701c6440e5f0db596937f51d2 (patch) | |
| tree | cd0b90fb3b38715c58e97079b83a73d0a650e9b0 /Library | |
| parent | 4685ba994d11048e9e688e642e1056f602e1337f (diff) | |
| download | homebrew-3420795ec5101ef701c6440e5f0db596937f51d2.tar.bz2 | |
Formula for ElasticSearch
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/elasticsearch.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/elasticsearch.rb b/Library/Formula/elasticsearch.rb new file mode 100644 index 000000000..2195b9f96 --- /dev/null +++ b/Library/Formula/elasticsearch.rb @@ -0,0 +1,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 |
