before_install.linux.sh 307 字节
Newer Older
Y
Yu Yang 已提交
1 2
#!/bin/bash
set -e
Y
Yu Yang 已提交
3
pip install protobuf
4 5 6 7 8
cd /tmp
wget https://github.com/google/protobuf/archive/v3.0.2.tar.gz -O protobuf.tar.gz
tar xf protobuf.tar.gz
cd protobuf*
./autogen.sh
Y
Yu Yang 已提交
9
./configure --prefix=/usr/
10 11 12 13
make -j 2 install
cd ..
rm -rf protobuf*

Y
Yu Yang 已提交
14 15 16 17 18
pushd /usr/src/gtest
cmake .
make
sudo cp *.a /usr/lib
popd