mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-11-29 16:24:18 +01:00
11 lines
232 B
Bash
11 lines
232 B
Bash
#!/usr/bin/env bash
|
|
cd /liftinstall || exit 1
|
|
|
|
apt-get update
|
|
apt-get install -y libwebkit2gtk-4.0-dev libssl-dev
|
|
|
|
curl https://build.travis-ci.org/files/rustup-init.sh -sSf | sh -s -- -y
|
|
export PATH=~/.cargo/bin:$PATH
|
|
|
|
cargo build
|