moved setup script to scripts/
This commit is contained in:
11
scripts/setup.sh
Normal file
11
scripts/setup.sh
Normal file
@@ -0,0 +1,11 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user