homebrew-core/Formula/solr-php.rb

26 lines
586 B
Ruby

require 'formula'
class SolrPhp < Formula
homepage 'http://pecl.php.net/package/solr'
url 'http://pecl.php.net/get/solr-1.0.1.tgz'
md5 '538adecfd52a79feae777870edcfd5d7'
def install
cd "solr-#{version}" do
system "phpize"
system "./configure", "--prefix=#{prefix}"
system "make"
prefix.install "modules/solr.so"
end
end
def caveats; <<-EOS.undent
To finish installing Solr extension:
* Add the following lines to #{etc}/php.ini:
[solr]
extension="#{prefix}/solr.so"
* Restart your webserver
EOS
end
end