mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
14 lines
267 B
Text
14 lines
267 B
Text
post_install() {
|
|
# Enable socket by default
|
|
systemctl --global enable pipewire.socket
|
|
}
|
|
|
|
post_upgrade() {
|
|
if (( $(vercmp $2 0.1.6-2) < 0)); then
|
|
systemctl --global enable pipewire.socket
|
|
fi
|
|
}
|
|
|
|
pre_remove() {
|
|
systemctl --global disable pipewire.socket
|
|
}
|