Yucom/vagrant-user-setup.sh

14 lines
649 B
Bash
Raw Normal View History

2018-10-25 20:55:20 +02:00
#!/bin/sh
2018-11-19 20:08:55 +01:00
#set up steam runtimes. remove these lines if building without the runtime
git clone https://github.com/ValveSoftware/steam-runtime.git
./steam-runtime/setup_docker.sh --beta amd64 --extra-bootstrap=/home/vagrant/proton/steamrt-bootstrap.sh steam-proton-dev-beta
./steam-runtime/setup_docker.sh --beta i386 --extra-bootstrap=/home/vagrant/proton/steamrt-bootstrap.sh steam-proton-dev32-beta
2018-11-19 20:08:55 +01:00
#configure proton build
2018-10-25 20:55:20 +02:00
mkdir build
cd build
../proton/configure.sh --steam-runtime64=docker:steam-proton-dev-beta --steam-runtime32=docker:steam-proton-dev32-beta
#if building without the runtime, use:
2018-11-19 20:08:55 +01:00
#../proton/configure.sh --no-steam-runtime