homebrew-core/Formula/solr.rb

32 lines
689 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
url 'ftp://ftp.fu-berlin.de/unix/www/apache/lucene/solr/1.4.1/apache-solr-1.4.1.tgz'
2009-10-26 20:13:54 +00:00
homepage 'http://lucene.apache.org/solr/'
md5 '258a020ed8c3f44e13b09e8ae46a1c84'
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 -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