ca0b4b91dd
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
24 lines
549 B
Ruby
24 lines
549 B
Ruby
require 'formula'
|
|
|
|
class Elasticsearch < Formula
|
|
url 'https://github.com/downloads/elasticsearch/elasticsearch/elasticsearch-0.15.2.tar.gz'
|
|
homepage 'http://www.elasticsearch.com'
|
|
md5 '6e0e9ea3fcc0e95d2fe490445fb4aa1d'
|
|
|
|
skip_clean 'libexec/data'
|
|
|
|
def startup_script name
|
|
<<-EOS.undent
|
|
#!/bin/bash
|
|
exec #{libexec}/bin/#{name} $@
|
|
EOS
|
|
end
|
|
|
|
|
|
def install
|
|
prefix.install %w{LICENSE.txt NOTICE.txt README.textile}
|
|
libexec.install Dir['*']
|
|
|
|
(bin+'elasticsearch').write startup_script('elasticsearch')
|
|
end
|
|
end
|