# Note: depends on cmake
wget -c https://github.com/msgpack/msgpack-c/releases/download/cpp-3.3.0/msgpack-3.3.0.tar.gz
tar -xzf msgpack-3.3.0.tar.gz
cd msgpack-3.3.0
mkdir -p build
cd build
cmake -DCMAKE_INSTALL_PREFIX="/usr" ..
make # Doesn't mind -j#
make install