Don't know if I am posting this in the right folder, but heres a quick instruction on how I got xow working on Solus. For the uninitiated, xow is a excellent open-source product that lets you pair your xbox one controller to the usb dongle included!
I made a bash script to automate the process (there are probs many more efficient ways to do this, but this worked for me!) Change as you see fit 😀 but, the packages listed below has to be installed for it to work. Hope this helps those who missed this from other distros!
#!/bin/bash
if ! [ $(id -u) = 0 ]; then
echo "You must be root to run this script"
exit 1
fi
#Installs the prerequesites
/usr/bin/eopkg it -c system.devel git linux-current-headers libusb-devel make g++ cabextract
#Get the github project
/usr/bin/git clone https://github.com/medusalix/xow /opt/builds/xow
#Moves into newly formed directory and build the git
chown -R jenkoo.jenkoo /opt/builds/xow && cd /opt/builds/xow && /usr/bin/make BUILD=RELEASE
#Installs xow and enables the sercice in systemd
/usr/bin/make install
/bin/systemctl enable xow
/bin/systemctl start xow
#In case it does not work
#systemctl stop xow && systemctl disable xow && make uninstall
#Else, refer to troubleshooting page on github for more info: #https://github.com/medusalix/xow#troubleshooting