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/'
|
2013-03-12 06:50:58 +00:00
|
|
|
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
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
def script; <<-EOS.undent
|
|
|
|
#!/bin/sh
|
|
|
|
if [ -z "$1" ]; then
|
|
|
|
echo "Usage: $ solr path/to/config/dir"
|
|
|
|
else
|
2013-03-01 14:01:44 +00:00
|
|
|
cd #{libexec}/example && java -server $JAVA_OPTS -Dsolr.solr.home=$1 -jar start.jar
|
2010-04-07 05:58:35 +00:00
|
|
|
fi
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
2009-10-26 20:13:54 +00:00
|
|
|
def install
|
2010-09-16 18:45:35 +00:00
|
|
|
libexec.install Dir['*']
|
2010-04-07 05:58:35 +00:00
|
|
|
(bin+'solr').write script
|
2009-10-26 20:13:54 +00:00
|
|
|
end
|
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
To start solr:
|
2012-05-23 09:00:41 +00:00
|
|
|
solr path/to/solr/config/dir
|
2009-10-26 20:13:54 +00:00
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
See the solr homepage for more setup information:
|
2012-05-23 09:00:41 +00:00
|
|
|
brew home solr
|
2010-04-07 05:58:35 +00:00
|
|
|
EOS
|
2009-10-26 20:13:54 +00:00
|
|
|
end
|
|
|
|
end
|