2009-10-26 20:13:54 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Solr < Formula
|
2011-04-02 00:53:25 +00:00
|
|
|
url 'ftp://ftp.fu-berlin.de/unix/www/apache/lucene/solr/3.1.0/apache-solr-3.1.0.tgz'
|
2009-10-26 20:13:54 +00:00
|
|
|
homepage 'http://lucene.apache.org/solr/'
|
2011-04-02 00:53:25 +00:00
|
|
|
md5 'd7009df28f28a3e616def8035be06790'
|
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
|
2010-09-16 18:45:35 +00:00
|
|
|
cd #{libexec}/example && java -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:
|
2011-04-04 23:56:47 +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:
|
2011-04-04 23:56:47 +00:00
|
|
|
brew home solr
|
2010-04-07 05:58:35 +00:00
|
|
|
EOS
|
2009-10-26 20:13:54 +00:00
|
|
|
end
|
|
|
|
end
|