thrift: add php bindings to caveats

Closes Homebrew/homebrew#15937.
master
Adam Vandenberg 2013-02-02 15:49:43 -08:00
parent 611688616e
commit acba703654
1 changed files with 7 additions and 5 deletions

View File

@ -44,14 +44,16 @@ class Thrift < Formula
end
def caveats; <<-EOS.undent
Most language bindings were not installed. You may like to do the
following:
To install Python bindings:
pip install thrift
To install Ruby bindings:
gem install thrift
easy_install thrift
If anyone figures out the steps to reliably build a set of bindings, please
open a pull request.
To install PHP bindings:
export PHP_PREFIX=/path/to/homebrew/thrift/0.9.0/php
export PHP_CONFIG_PREFIX=/path/to/homebrew/thrift/0.9.0/php_extensions
brew install thrift --with-php
EOS
end
end