1
0
mirror of https://github.com/rancher/norman.git synced 2025-09-27 15:44:10 +00:00

Switch to modules

This commit is contained in:
Darren Shepherd
2018-09-25 11:26:23 -07:00
parent e5c60cd6bc
commit de109902bb
330 changed files with 2149 additions and 24847 deletions

View File

@@ -1,29 +0,0 @@
#!/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