safe_vault 0.12.0

This is Pre alpha, and not useful, no code worth looking at.
Documentation
#!/bin/bash

# TODO: remove this script once
# https://github.com/travis-ci/apt-package-whitelist/issues/369 is resolved

set -ex

# Check to see if musl is in the cache
if [ ! -f "$HOME/musl/bin/musl-gcc" ]; then
  rm -rf $HOME/musl

  git clone git://git.musl-libc.org/musl musl-build
  pushd musl-build
  ./configure --prefix=$HOME/musl
  make
  make install
  popd

  rm -rf musl-build
fi