Install Boost C++ libraries
Boost is a great collection of portable peer-reviewed C++ libraries that maximize productivity.
To install and use Boost in your SourceLair project, there a few steps you need to take first.
Install Boost C++ libraries
To install Boost run the following commands in your project’s terminal:
# Step 0: Prepare directories
mkdir -p /mnt/data/.local
# Step 1: Download boost
cd /mnt/data/.local
wget -O boost.tar.gz http://downloads.sourceforge.net/project/boost/boost/1.60.0/boost_1_60_0.tar.gz?r=htt
p%3A%2F%2Fwww.boost.org%2Fusers%2Fhistory%2Fversion_1_60_0.html\&ts=1458472711\&use_mirror=netix
tar -xzvf boost.tar.gz
# Step 2: Clean up
rm -r boost.tar.gz
Is there any other hack you would like to see here? Request a hack.