mirror of
https://github.com/thinkonmay/sunshine-sdk.git
synced 2026-01-06 18:41:33 +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
|
|
}
|
|
|