xmrig-bash-scripts/depends.sh
Sean Wheller fb7ccf8fee Revert "add jq to depends"
This reverts commit fefc40e997.
2019-07-27 17:43:50 +02:00

19 lines
520 B
Bash
Executable File

#!/bin/bash
echo "#################################"
echo " INSTALLING DEPENDENCIES "
echo "#################################"
# Install the software requirements
if [ $_APT_DEPENDS = 1 ]; then
sudo apt install -y screen software-properties-common git build-essential cmake libuv1-dev libssl-dev libmicrohttpd-dev gcc g++
else
echo "Depend install is set to NO ($_APT_DEPENDS) Skipping"
fi
echo "#################################"
echo " DEPENDENCIES INSTALLED "
echo "#################################"