build.sh
1 #!/bin/bash 2 3 case "$1" in 4 "help") 5 echo "Commands:" 6 echo "help - display this message." 7 echo "build - build this setup." 8 echo "deps - install dependencies." 9 ;; 10 "build") 11 echo "Starting build..." 12 ;; 13 "deps") 14 echo "Installing dependencies..." 15 sudo apt-get install llvm clang live-build;; 16 esac 17