mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
730 B
Text
Executable file
22 lines
730 B
Text
Executable file
post_install() {
|
|
gtk-update-icon-cache -f -t /usr/share/icons/hicolor
|
|
echo ""
|
|
echo " -----------------------------------------------------------------------"
|
|
echo " Please edit the "Friendly Name" in /etc/conf.d/gmediarender"
|
|
echo " -----------------------------------------------------------------------"
|
|
echo " start the service by running (as root):"
|
|
echo " systemctl start gmediarender"
|
|
echo " -----------------------------------------------------------------------"
|
|
echo " enable the service by running (as root):"
|
|
echo " systemctl enable gmediarender"
|
|
echo " -----------------------------------------------------------------------"
|
|
echo ""
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
post_remove() {
|
|
post_install
|
|
}
|