1
0
mirror of https://github.com/rancher/norman.git synced 2025-09-25 22:54:28 +00:00
Files
norman/vendor/github.com/gogo/protobuf/install-protobuf.sh
Darren Shepherd 816c6cf363 Vendor bump
2017-11-10 21:46:33 -07:00

30 lines
504 B
Bash
Executable File

#!/usr/bin/env bash
set -ex
die() {
echo "$@" >&2
exit 1
}
case "$PROTOBUF_VERSION" in
2*)
basename=protobuf-$PROTOBUF_VERSION
;;
3*)
basename=protobuf-cpp-$PROTOBUF_VERSION
;;
*)
die "unknown protobuf version: $PROTOBUF_VERSION"
;;
esac
cd /home/travis
wget https://github.com/google/protobuf/releases/download/v$PROTOBUF_VERSION/$basename.tar.gz
tar xzf $basename.tar.gz
cd protobuf-$PROTOBUF_VERSION
./configure --prefix=/home/travis && make -j2 && make install