homebrew-core/Formula/solr.rb

32 lines
709 B
Ruby
Raw Normal View History

2009-10-26 20:13:54 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Solr < Formula
2009-10-26 20:13:54 +00:00
homepage 'http://lucene.apache.org/solr/'
url 'http://www.apache.org/dyn/closer.cgi?path=lucene/solr/4.2.0/solr-4.2.0.tgz'
sha1 '3525a424be3c7f5de27ea1ab60b267cc0670b6c4'
2009-10-26 20:13:54 +00:00
def script; <<-EOS.undent
#!/bin/sh
if [ -z "$1" ]; then
echo "Usage: $ solr path/to/config/dir"
else
cd #{libexec}/example && java -server $JAVA_OPTS -Dsolr.solr.home=$1 -jar start.jar
fi
EOS
end
2009-10-26 20:13:54 +00:00
def install
libexec.install Dir['*']
(bin+'solr').write script
2009-10-26 20:13:54 +00:00
end
def caveats; <<-EOS.undent
To start solr:
solr path/to/solr/config/dir
2009-10-26 20:13:54 +00:00
See the solr homepage for more setup information:
brew home solr
EOS
2009-10-26 20:13:54 +00:00
end
end