blob: d940084e665fbc891bc6261b9d64fe6b7fa679df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install() {
cat <<'EOM'
==> Orators was installed.
==> Enable the packaged user service for your account:
systemctl --user daemon-reload
systemctl --user enable --now oratorsd.service
==> Then install the managed Bluetooth backend once:
oratorsctl install-system-backend
==> Runtime note: Orators currently expects BlueALSA binaries to be present.
==> This package depends on bluez-alsa-git because that is the matching AUR package currently available.
EOM
}
post_upgrade() {
post_install
}
|