homebrew-core/Formula/solr.rb
Adam Vandenberg edfb67d937 Rewrite caveats to new style.
To make it easier to copy and paste multiline scripts from caveats,
no longer use $ as a prompt marker.
2011-04-04 16:56:47 -07:00

31 lines
689 B
Ruby

require 'formula'
class Solr < Formula
url 'ftp://ftp.fu-berlin.de/unix/www/apache/lucene/solr/3.1.0/apache-solr-3.1.0.tgz'
homepage 'http://lucene.apache.org/solr/'
md5 'd7009df28f28a3e616def8035be06790'
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