blob: 094b5d67769476800af6e586fa5e3cd2e88c4fa2 [file] [log] [blame]
Louis Ryanc42c8c42015-03-18 16:31:38 -07001#!/bin/bash
2#
3# Build protoc & netty
4set -ev
5
Louis Ryanc42c8c42015-03-18 16:31:38 -07006# Make protoc
Eric Andersona0acb9b2015-03-20 10:26:00 -07007# Can't check for presence of directory as cache auto-creates it.
Kun Zhanga2511712015-06-05 14:55:26 -07008if [ -f /tmp/proto3-a3/bin/protoc ]; then
Eric Andersona0acb9b2015-03-20 10:26:00 -07009 echo "Not building protobuf. Already built"
10else
Kun Zhangaf9fb6d2015-06-30 16:08:46 -070011 wget -O - https://github.com/google/protobuf/archive/v3.0.0-alpha-3.1.tar.gz | tar xz -C /tmp
12 pushd /tmp/protobuf-3.0.0-alpha-3.1
Eric Andersona0acb9b2015-03-20 10:26:00 -070013 ./autogen.sh
14 # install here so we don't need sudo
Kun Zhanga2511712015-06-05 14:55:26 -070015 ./configure --prefix=/tmp/proto3-a3
Eric Andersona0acb9b2015-03-20 10:26:00 -070016 make -j2
17 make install
18 popd
19fi