mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
17 lines
378 B
Text
17 lines
378 B
Text
post_install() {
|
|
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor > /dev/null 2>&1
|
|
update-desktop-database > /dev/null 2>&1
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
pre_remove() {
|
|
update-desktop-database > /dev/null 2>&1
|
|
}
|
|
|
|
post_remove() {
|
|
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor > /dev/null 2>&1
|
|
update-desktop-database > /dev/null 2>&1
|
|
}
|