lancache-autofill/install.sh

28 lines
954 B
Bash
Raw Normal View History

2017-02-05 22:18:16 +00:00
#!/bin/bash
2017-08-17 00:00:45 +00:00
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
GREEN='\033[0;32m'
BLACK='\033[0m'
2017-02-05 22:18:16 +00:00
2017-08-17 00:00:45 +00:00
printf "${GREEN}Installing dependencies with apt${BLACK}\n"
apt install -y lib32gcc1 \
lib32stdc++6 \
lib32tinfo5 \
lib32ncurses5 \
libcurl3-gnutls:i386 \
php7.0-cli \
php7.0-mbstring \
php7.0-sqlite \
composer \
expect \
2017-02-05 22:18:16 +00:00
2017-08-17 00:00:45 +00:00
printf "${GREEN}Installing dependencies with Composer${BLACK}\n"
composer update
2017-08-17 00:00:45 +00:00
printf "${GREEN}Installing Steam${BLACK}\n"
mkdir -p /usr/games/steam && cd /usr/games/steam && curl -sqL "http://media.steampowered.com/client/steamcmd_linux.tar.gz" | tar zxvf -
2017-08-17 00:00:45 +00:00
printf "${GREEN}Creating database file${BLACK}\n"
cd $SCRIPT_DIR && touch "database.sqlite"
printf "${GREEN}Creating your enviroment file${BLACK}\n"
cd $SCRIPT_DIR && cp ".env.example" ".env" && /bin/nano ".env"