Skip to content

Instantly share code, notes, and snippets.

@hfwang
Last active August 29, 2015 14:01
Show Gist options
  • Save hfwang/55061fe5d7945f980402 to your computer and use it in GitHub Desktop.
Save hfwang/55061fe5d7945f980402 to your computer and use it in GitHub Desktop.
#!/bin/sh
# fail fast
set -e
# capture root dir
root=$(pwd)
# change into subdir of archive
cd $root/protobuf-*
# configure and compile
./configure --prefix /app/protobuf
make
make install
# remove source files
rm -rf $root/*
# copy build artifacts back into the root
cp -R /app/protobuf $root/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment