Notes on Building TPP on OSX Mavericks (10.9)

Updated 2013/11/01 following various patching to compile with boost_1.54.0
and clang v5.0. This is un-tested on any previous version of OSX.

Download and install homebrew from:

	http://brew.sh/
	
Install neccessary libraries using homebrew
	
	$ brew install gnuplot
	$ brew install libpng
	$ brew install gd
	
Create a Makefile.config.incl to configure the build, e.g.

	$ cd trans_proteomic_pipeline/src
	$ vi Makefile.config.incl
	
	TPP_ROOT=/home/user1/tpp/
	TPP_WEB=/tpp/

Build and install:

	$ make && make install
	
This *should* finishe without problems, leaving TPP ready to use from the
command line. To use the web interface you'll need to install apache using
homebrew, and configure per the Linux instructions.

