diff options
| author | Adam Vandenberg | 2013-02-02 15:49:43 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2013-02-02 15:50:11 -0800 |
| commit | 42d1e1b8ebb10c3915f4accc266256fd975ad7d2 (patch) | |
| tree | 0923471c6d7170b0cfaac6c4e36e93a3333dfae4 /Library/Formula | |
| parent | b39c936446558db70cd5ddbb0fa1659b55c14b4a (diff) | |
| download | homebrew-42d1e1b8ebb10c3915f4accc266256fd975ad7d2.tar.bz2 | |
thrift: add php bindings to caveats
Closes #15937.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/thrift.rb | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Library/Formula/thrift.rb b/Library/Formula/thrift.rb index 8b4e7d020..cbf712bb8 100644 --- a/Library/Formula/thrift.rb +++ b/Library/Formula/thrift.rb @@ -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 |
