Files
wunker-os/scripts/install-xboxdrv.sh
2023-06-04 01:12:48 -04:00

13 lines
301 B
Bash
Executable File

#!/usr/bin/env bash
set -oue pipefail
dnf install -y git gcc-c++ pkgconfig libusb1-devel boost-devel systemd-devel dbus-devel python3-scons
cd ~
mkdir src
cd src
git clone https://gitlab.com/xboxdrv/xboxdrv.git
cd xboxdrv
git checkout stable
git submodule update --init --recursive
scons
make install