jankos/setup.sh
2018-11-29 20:47:13 -08:00

12 lines
280 B
Bash

#!/bin/sh
# Setup script to grab any and all dependancies needed to build this on any of my machines
bochs_=$(dpkg --list | grep bochs)
if [ "$bochs_" == "" ]
then
# install bochs shiz
sudo apt-get update
sudo apt-get install bochs bochs-sdl
else
echo 'Nothing to install'
fi