2018-10-25 21:55:20 +03:00
|
|
|
#!/bin/sh
|
2018-12-05 20:21:36 +03:00
|
|
|
|
2018-11-19 22:08:55 +03:00
|
|
|
#set up steam runtimes. remove these lines if building without the runtime
|
2018-12-06 23:54:41 +03:00
|
|
|
git clone https://github.com/ValveSoftware/steam-runtime.git
|
2018-12-20 18:23:45 +03:00
|
|
|
./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 22:08:55 +03:00
|
|
|
|
|
|
|
#configure proton build
|
2018-10-25 21:55:20 +03:00
|
|
|
mkdir build
|
|
|
|
cd build
|
2018-12-20 18:23:45 +03:00
|
|
|
../proton/configure.sh --steam-runtime64=docker:steam-proton-dev-beta --steam-runtime32=docker:steam-proton-dev32-beta
|
2018-12-05 20:21:36 +03:00
|
|
|
#if building without the runtime, use:
|
2018-11-19 22:08:55 +03:00
|
|
|
#../proton/configure.sh --no-steam-runtime
|