7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
12 lines
309 B
Ruby
12 lines
309 B
Ruby
require 'formula'
|
|
|
|
class Elasticsearch < Formula
|
|
url 'http://github.com/downloads/elasticsearch/elasticsearch/elasticsearch-0.8.0.zip'
|
|
homepage 'http://www.elasticsearch.com'
|
|
md5 '0b9f0361163847a6580658c59cbfcc51'
|
|
|
|
def install
|
|
rm_f Dir["bin/*.bat"]
|
|
prefix.install %w[bin config lib]
|
|
end
|
|
end
|