mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-08-10 00:52:16 +00:00
This also removes the standalone PKGBUILD artifact because our PKGBUILD has external dependencies now.
13 lines
139 B
Plaintext
13 lines
139 B
Plaintext
do_setcap() {
|
|
setcap cap_sys_admin+p $(readlink -f $(which sunshine))
|
|
}
|
|
|
|
post_install() {
|
|
do_setcap
|
|
}
|
|
|
|
post_upgrade() {
|
|
do_setcap
|
|
}
|
|
|