homebrew-core/Formula/solr.rb

38 lines
895 B
Ruby

require 'formula'
class Solr < Formula
homepage 'http://lucene.apache.org/solr/'
url 'http://www.apache.org/dyn/closer.cgi?path=lucene/solr/4.0.0/apache-solr-4.0.0.tgz'
sha1 '0cb61d9572516fc627785201b79b3a85e95f877d'
devel do
url 'http://www.apache.org/dyn/closer.cgi?path=lucene/solr/4.0.0-BETA/apache-solr-4.0.0-BETA.tgz'
sha1 'b41061400f3c5e0433ae8e01c4a62814be37b712'
version "4.0.0-BETA"
end
def script; <<-EOS.undent
#!/bin/sh
if [ -z "$1" ]; then
echo "Usage: $ solr path/to/config/dir"
else
cd #{libexec}/example && java -Dsolr.solr.home=$1 -jar start.jar
fi
EOS
end
def install
libexec.install Dir['*']
(bin+'solr').write script
end
def caveats; <<-EOS.undent
To start solr:
solr path/to/solr/config/dir
See the solr homepage for more setup information:
brew home solr
EOS
end
end