protocを取得する

1
brew install protobuf

peclから圧縮ファイルを取得する

http://pecl.php.net/package/protobuf から欲しいバージョンのtgzを確認する 今回は3.4.0をインストールします

1
2
3
4
5
6
7
8
9
cd /tmp
wget http://pecl.php.net/get/protobuf-3.4.0.tgz
tar zxvf protobuf-3.4.0.tgz
cd protobuf-3.4.0
phpize
./configure
make
make test
make install