Advertisement
illwieckz

unvanquished install script (without submodules)

Jun 5th, 2021
1,126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.86 KB | None | 0 0
  1. wget -c https://dl.unvanquished.net/release/unvanquished_0.52.0.zip
  2. wget -c https://dl.unvanquished.net/deps/linux64-5.tar.bz2
  3. git clone --branch=unvanquished/0.52.0 https://github.com/DaemonEngine/Daemon.git daemon
  4. git clone --branch=unvanquished/0.52.0 https://github.com/DaemonEngine/breakpad.git daemon/libs/breakpad
  5. git clone --branch=unvanquished/0.52.0 https://github.com/DaemonEngine/crunch.git daemon/libs/crunch
  6. unzip -o unvanquished_0.52.0.zip
  7. tar -xvjf linux64-5.tar.bz2 -C daemon/external_deps
  8. cmake -Hdaemon -Bbuild -DUSE_BREAKPAD=ON -DUSE_GEOIP=ON -DBUILD_TTY_CLIENT=OFF -DBUILD_SERVER=OFF -DUSE_LTO=ON
  9. cmake --build build --parallel $(nproc)
  10. mkdir -v app
  11. mv -v unvanquished_0.52.0/pkg app/
  12. mv -v build/daemon app/
  13. mv -v build/nacl_loader app/
  14. mv -v build/nacl_helper_bootstrap app/
  15. mv -v build/irt_core-x86_64.nexe app/
  16. mv -v build/crash_server app/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement