sunshine-sdk/packaging/linux/Arch/sunshine.install
Cameron Gutman cb4bfaa2f4 Add the .INSTALL script needed for kmsgrab to work
This also removes the standalone PKGBUILD artifact because
our PKGBUILD has external dependencies now.
2024-03-09 18:56:44 -06:00

13 lines
139 B
Plaintext

do_setcap() {
setcap cap_sys_admin+p $(readlink -f $(which sunshine))
}
post_install() {
do_setcap
}
post_upgrade() {
do_setcap
}